overflow:hidden ignoring bottom padding

后端 未结 10 2263
北海茫月
北海茫月 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:37

    I found that the easiest way was to add an element between the parent and child with

    overflow:hidden;
    height:100%;
    

    http://jsfiddle.net/va78jsm5/2/

    Then I didn't have to worry about matching the height/margin of the middle element.

提交回复
热议问题