overflow:hidden ignoring bottom padding

后端 未结 10 2232
北海茫月
北海茫月 2020-12-14 15:50

In the following example, the bottom padding is ignored, and the text flows to the bottom of the element before hiding. What is causing this?

10条回答
  •  囚心锁ツ
    2020-12-14 16:34

    I prefer to use as few

    s as possible.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    Hello, this is text.

    .container{ padding: 30px 30px 0; position: relative; width: 240px; height: 170px; border:1px solid #000; overflow: hidden; } .container:after{ content: ' '; display: block; background-color: red; height: 30px; width: 100%; position: absolute; bottom: 0; }

    http://jsfiddle.net/bgaR9/

    naturally in a world without IE < 9

提交回复
热议问题