About 253,000 results
Open links in new tab
  1. css - What purpose does overflow: hidden; serve? - Stack Overflow

    Mar 18, 2014 · overflow: hidden prevents scrollbars from showing up, even when they're necessary. Explanation of your CSS: margin: 0 auto horizontally aligns the element at the …

  2. Overflow: hidden in CSS

    Oct 20, 2013 · overflow: hidden on a container simply hides any content that flows outside of the box, as demonstrated beautifully by the following diagram (courtesy of Chris Coyier/CSS …

  3. CSS hide scroll bar, but have element scrollable - Stack Overflow

    "[..]I want to make it scrollable but hide the scroll bar" -- That would be horrible! Scrollbars have a purpose, and that purpose is to scroll.

  4. Hide scroll bar, but while still being able to scroll - Stack Overflow

    May 21, 2013 · In Google Chrome it's: ::-webkit-scrollbar { display: none; } But Mozilla Firefox and Internet Explorer don't seem to work like that. I also tried this in CSS: overflow: hidden; That …

  5. css :before visible when overflow hidden - Stack Overflow

    Mar 30, 2019 · 3 If you declare an element to have overflow: hidden it will apply to all content, including before and after elements. There is no way to disable the hidden value for a specific …

  6. html - Overflow:hidden can't scroll in div - Stack Overflow

    Jun 10, 2015 · 13 If you want to hide the scroll bar but you wish to let it scroll, you can have a container with overflow:hidden; and a child container with overflow-y:scroll, and hide the scroll …

  7. html - CSS overflow-x: visible; and overflow-y: hidden; causing ...

    Short Version: If you are using visible for either overflow-x or overflow-y and something other than visible for the other, the visible value is interpreted as auto.

  8. force element to display outside of overflow:hidden

    25 Make an additional outer div with position relative and set the absolute position of the div you want to move outside of the overflow hidden div.

  9. How to make the overflow CSS property work with hidden as value

    Oct 19, 2010 · I am having a tough time with overflow: hidden. Basically, I am trying to hide the overflow of an unordered list which is located in a <div>. I have no idea why this isn't …

  10. How to make CSS3 rounded corners hide overflow in Chrome/Opera

    Apr 21, 2011 · I need round corners on a parent div to mask content from its childen. overflow: hidden works in simple situations, but breaks in webkit based browsers and Opera when the …