Contain Floats Without Cutting Off Specific Items
FYI: This is a follow up to another question: Position element absolutely, but to the right of another element I have a list of form elements and I'm trying to add callouts for eac
Solution 1:
Instead of overflow:hidden
you can use clearfix method. Write like this:
li:after{
content:'';
display:block;
clear:both;
}
Post a Comment for "Contain Floats Without Cutting Off Specific Items"