What fresh hell is THIS now? - Patrick Lauke
aria-expanded
attribute tells us the expanded state of a group it controls (aria-controls
), then what attribute on the group tells us its own expanded state?
<a aria-controls="menu" aria-expanded="true">Menu</a> <menu id="menu” what-attribute-goes-here="true"> <li> <a href="#item1">Item 1</a> </li> <li> <a href="#item2">Item 2</a> </li> </menu>
overflow: hidden
, screen readers are going to read the full text rather than truncating, correct?
clip: rect(0 0 0 0)
just be clip-path: inset(0)
?
polygon(0 0,0 0,0 0,0 0)
is about as small as I could get it. Yuck. Wonder when browsers would drop support for clip
.
polygon(0 0)