Quote:
Originally Posted by Hitch
I'm sure that If I put my noggin to it, I could think of a select few instances in which they are justified--...Hitch
|
Perhaps when dealing with a "problem" like this:
Code:
CSS:
h1 {margin-top: 2em; margin-bottom: 2em; text-align: center;}
Text:
<h1>LOVE AMOUNG<br/>the<br/>CHICKENS</h1>
<h1>by P. G. Wodehouse</h1>
You can't just put in 3 H1 tags for the title. You have to do something more complex like:
Code:
CSS:
h1 {margin-top: 2em; margin-bottom: 2em; text-align: center;}
h1.firstline {margin-top: 2em; margin-bottom: 0em; text-align: center;}
h1.middleline {margin-top: 0em; margin-bottom: 0em; text-align: center;}
h1.bottomline {margin-top: 0em; margin-bottom: 2em; text-align: center;}
Text:
Text:
<h1 class="firstline">LOVE AMOUNG</h1>
<h1 class="middleline">the</h1>
<h1 class="bottomline">CHICKENS</h1>
<h1>by P. G. Wodehouse</h1>