Is doing this bad:
<h3>Some title or other...<a href="#pagetop" >back to top</a></h3>
I have a feeling it is... My problem is I'm using CSS to style the H3 into a
block that spans the whole containing element. I would like the <a> to
appear next to the title, but I'm sure this is bad practice (for screen
readers and heading-level navigation etc etc)
So... is it acceptable to do this:
<span><h3>Som e title or other...</h3><a href="#pagetop" >back to
top</a></span>
Or does nesting the <h3> in a <span> do something horrible to the document
structure?
Comments, please! :)
P.
<h3>Some title or other...<a href="#pagetop" >back to top</a></h3>
I have a feeling it is... My problem is I'm using CSS to style the H3 into a
block that spans the whole containing element. I would like the <a> to
appear next to the title, but I'm sure this is bad practice (for screen
readers and heading-level navigation etc etc)
So... is it acceptable to do this:
<span><h3>Som e title or other...</h3><a href="#pagetop" >back to
top</a></span>
Or does nesting the <h3> in a <span> do something horrible to the document
structure?
Comments, please! :)
P.
Comment