View Single Post
Old 05-09-2015, 10:43 AM   #17
Phssthpok
Age improves with wine.
Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.Phssthpok knows how to set a laser printer to stun.
 
Posts: 583
Karma: 95229
Join Date: Nov 2014
Device: Kindle Oasis, Kobo Libra II
Quote:
Originally Posted by eschwartz View Post
The appropriate way is I believe to use a
Code:
<h1>Header<br/><span class="subhead">Subhead</span></h1>
This has the effect of semantically keeping a subhead part of the structural header
Yes, but the subhead is then at the wrong level in the structure. The correct structure is
Code:
<h1>heading</h1>
<h2>Subhead</h2>
<p>Content</p>
which is what I have. I then try to use CSS to give it the correct appearance, but the conversion tool screws it up. I absolutely refuse to alter the structure of the document in order to correct its appearance. YMMV, but that's the way I like to do things.
Phssthpok is offline   Reply With Quote