Earlier, there was a discussion of why not to use <br>s too much. I
mostly don't like using <br>s at all but there is one situation where
its seems better than the alternative.
<h4> this is the paragraph header</h4>
<p> this is the paragraph</p>
If I want no margin between the header and the paragraph, I can use:
<h4 class='no_botto m_margin'> this is the paragraph header</h4>
<p class='no_top_m argin'> this is the paragraph</p>
But this is sometimes more obnoxious than
<p>
<span class='paragrap hheader'>this is the paragraph header</span>
<br>
this is the paragraph</p>
How would you do this ?
mostly don't like using <br>s at all but there is one situation where
its seems better than the alternative.
<h4> this is the paragraph header</h4>
<p> this is the paragraph</p>
If I want no margin between the header and the paragraph, I can use:
<h4 class='no_botto m_margin'> this is the paragraph header</h4>
<p class='no_top_m argin'> this is the paragraph</p>
But this is sometimes more obnoxious than
<p>
<span class='paragrap hheader'>this is the paragraph header</span>
<br>
this is the paragraph</p>
How would you do this ?
Comment