yourhead / s3

public info about s3
8 stars 7 forks source link

Built in columns stacks not clearing below. #801

Closed doobox closed 6 years ago

doobox commented 6 years ago

I came across this, granted, removing the "overflow:hidden" from a built in 2 columns stack with jQuery.

Currently removing "overflow:hidden" from a 2 column stack breaks the layout below.

But if I add this to my CSS, targeting all Yourhead columns stacks, to clear below the columns, all is well again....

div[class*="_columns_stack"]:after { content: ""; display: table; clear: both; height: 0; }

It would be better if this was built in.

yourhead commented 6 years ago

yes, hiding overflow is the same as clearing below. that's the expected behavior. if you remove the hidden then you'll have to find another way to do the clearing.