What fresh hell is THIS now? - Patrick Lauke
[blind3y3design] @veyfeyken using an svg
ad the src for an img
tag greatly reduces the flexibility and usefulness of having it be an svg in the first place.
One of the many reasons to use the svg
block element is to allow for the ability to modify the svg itself with css (color, size, transition, etc). If you're using SVG elements in your designs/development you should be taking the extra time to be adding in the proper title
and description
to the svg itself.
title
.for
is never a bad thing, able to go with that solution? Curious; which version of JAWS+IE?
aside
element “below” the main content, but positioned to right the side where required. This way folks get to the main content as you’d prefer, then can bypass the aside
content if desired.
for
is just a bandaid solution. I’d like to know myself.
[svinkle] @laura.ciporen Hmm, well this also may not be ideal, but you could implement a visually hidden skip link? Something like:
<article> <p>content…</p> <a href="#afterAside" class="visuallyhidden">skip past aside</a> <aside> <p>content…</p> </aside> <p id="afterAside">content…</p> </article>
Kinda messy but the idea is to provide a mechanism to skip past the content or screen reader users, this might work?
But yeah, would be nice to have things implemented as the spec indicates.
[svinkle] @laura.ciporen Good point re: cursor, I should have added:
<p id="afterAside" tabindex="-1">content…</p>
This moves focus to the new point in the document.
[blind3y3design] @jv the ADA and ADAAA require any business that employs more than 15 people to:
provide “reasonable accommodation” to qualified individuals with disabilities who are employees or applicants for employment—unless such accommodation would cause the employer an “undue hardship.
[blind3y3design] There are certain physical disability-related regulations that you are supposed to meet regardless of whom you employ, or who your intended customer is.
Section 302 & 303 of the ADA are all about regulations and requirements about changes in elevation
abbr
tag be a correct practice?