About 50 results
Open links in new tab
  1. What exactly is meant by "overflow" in CSS?

    Aug 17, 2022 · In CSS, overflow is what the content and container looks like if the content is smaller or bigger than the containing element with defined dimension (width, height). There are different outputs …

  2. html - CSS - Only Horizontal Overflow? - Stack Overflow

    Aug 7, 2012 · Is it possible to achieve only horizontal overflow in CSS 2.1? overflow: auto; Will cause a block element to have both horizontal and vertical scrollbars. I want a block element (let's say <div...

  3. css - Prevent flex items from overflowing a container - Stack Overflow

    Aug 22, 2017 · Use a positive flex-shrink to let them shrink if there isn't enough space. To prevent vertical overflow, you can Use min-height instead of height to allow the flex items grow more if …

  4. html - How to prevent text from overflowing in CSS? - Stack Overflow

    Mar 19, 2019 · 20 You can control it with CSS, there is a few options : hidden -> All text overflowing will be hidden. visible -> Let the text overflowing visible. scroll -> put scroll bars if the text overflows Hope …

  5. css - The property position: sticky is not working - Stack Overflow

    170 Position sticky will not work if an ancestor element has an overflow property set that isn't reset/unset in an interceding ancestor before the element with position: sticky (for me it was overflow-x: hidden; …

  6. html - CSS ellipsis on second line - Stack Overflow

    Mar 11, 2011 · CSS text-overflow: ellipsis on second line, is this possible? I can't find it on the net. example: what I want is like this: I hope someone could help me. I need an ellipsis on the second line ...

  7. Newest 'css' Questions - Stack Overflow

    CSS, or Cascading Style Sheets, is a language used to control the visual presentation of documents written in a markup language, including HTML, XML, XHTML, SVG, and XUL.

  8. Making a div vertically scrollable using CSS - Stack Overflow

    The scrollbar can be triggered with any property overflow, overflow-x, or overflow-y and each can be set to any of visible, hidden, scroll, auto, or inherit. You are currently looking at these two: auto - This …

  9. Overflow behavior after using CSS3 transform

    The CSS transform property lets you modify the coordinate space of the CSS visual formatting model. Using it, elements can be translated, rotated, scaled, and skewed according to the values set.

  10. How to stop text from taking up more than 1 line? - Stack Overflow

    Feb 21, 2009 · The fairly new text-wrap CSS property is currently being introduced directly for this purpose, to separate text breaking from white space collapsing. To make the content overflow the …