I am puzzled as to why my paragraph is not starting on a new line despite the overflow property set on the previous element.
Take a look at my plunker, adjust the overflow property in line 11
to hidden
and it will display correctly. When set to visible
, it messes up the layout.
I understand that using a clearfix can resolve this problem, but I am curious about why overflow is affecting the appearance of my content;
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
overflow: visible; /* Change this to visible/hidden*/
}