Quote:
Originally Posted by JSWolf
As to the section break, you need to use <hr.transition> for accessibility. The following code works well.
Code:
hr.transition {
margin-top: 0.9em;
margin-right: 40%;
margin-bottom: 0.9em;
margin-left: 40%;
border-top: 2px solid;
}
|
I'm pretty sure I mentioned using <hr/> as the section break...with multiple examples... and a picture!
According to
Accessible Publishing Knowledge Base it says <hr/> is used for accessibility, and then it gives examples using <hr class="transition">. I didn't see anywhere where using that particular class was required. Maybe I missed it. Do you know where it says you must use class="transition"?? I checked my code with an online accessibility checker and it says there is nothing wrong with it. Also, the
html5 standard doesn't use a class at all.
There's obviously nothing wrong with using 'transition', but I was just wondering if it is required.