Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 428 Bytes

File metadata and controls

24 lines (14 loc) · 428 Bytes

General HTML notes


  • all the elements can have the attribute title="my text". It gives extra informations and usually goes inside the over tooltip.

ARIA

ARIA (Accessible Rich Internet Applications)

Hide the element only for the screen reader

<div aria-hidden=true></div>

Hide the element for everyone

<div hidden>you can't see this</div>