Two questions for this fiddle…
- Why doesn’t the
middletext move under theleftandrighttexts even though it hasclear: bothassigned to it? - Why doesn’t the
middletext go to the middle of the footer even withmargin: 0 auto?
I did manage to get the text to the middle under left and right but I had to use a separate div around the <h7 id="middle">. Is there a way around it?
I’ll be more precise.
<h7>doesn’t exist, so it is rendered as an inline element… Socleardoesn’t affect it!(And you’ll have to use
text-align:center;instead ofmargin:auto;, unless you use a specified width)