I have overflow: scroll; the only issue I am now getting is when I hover over a image and it expands in the css it only displays in the css box when I am using overflow:scroll; .. If I do not use overflow:scroll; then it displays out of the parent box. I have spent hours searching. But can not seem to find a solution. The pain is I still need the scroll but can't seem to find another solution. Anyone have any thoughts?
Maybe if you showed us your markup and css we wouldn't have to guess what you have that might be causing your issue. Best way to help us help you, is to make a minimal test case. Next is link to your site so we can see it there. gary
Hello @xbat , If you want to know all the options freely check it here with examples and maybe you'll have idea what's wrong with your markup. https://developer.mozilla.org/en-US/docs/Web/CSS/overflow Else please provide your sample code so we can give you exact solution...
Any thoughts? Yes. If you want us to help you, you MUST help us. Trying to diagnose a patient without seeing the patient is impossible, like trying to get your doctor to diagnose your ills over the phone.
As a general rule, a better value for the overflow property is to use {overflow:auto;}. It also creates a new block formatting context as does any value other than the default 'visible;'. Try that to see if it works as desired. gary