Skip to main content
CSS-Tricks
  • Articles
  • Alamanac
  • Guides
  • Videos
  • Books
  • Newsletter
Search

Articles Tagged
visibility

3 Articles
{
,

}
Direct link to the article Inclusively Hidden
accessibility hiding inert visibility

Inclusively Hidden

Scott O’Hara recently published “Inclusively Hidden,” a nice walkthrough of the different ways to hide things on the web. Nothing is ever cut and dry when it comes to the web! What complicates this is that hidden begs the question: …

Avatar of Chris Coyier
Chris Coyier on Apr 19, 2019 (Updated on Feb 23, 2021)
Direct link to the article Toggle Visibility When Hiding Elements
hiding visibility

Toggle Visibility When Hiding Elements

The development team at Medium have discussed some bad practices that break accessibility. In one example, they argue that opacity is not well supported by screen readers and so if we want to hide an element in a transition …

Avatar of Robin Rendle
Robin Rendle on Sep 17, 2015 (Updated on Feb 22, 2021)
Direct link to the article visibility
hiding visibility

visibility

The visibility property in CSS has two different functions. It hides rows and columns of a table, and it also hides an element without changing the layout.

p {
  visibility: hidden;
}
tr {
  visibility: collapse;
}

visibility has …

Avatar of Sara Cope
Sara Cope on Sep 6, 2011 (Updated on Feb 22, 2021)

CSS-Tricks is powered by DigitalOcean.

Keep up to date on web dev

with our hand-crafted newsletter

DigitalOcean
  • About DO
  • Cloudways hosting
  • Legal stuff
  • Get free credit!
CSS-Tricks
  • Write for us!
  • Advertise with us
  • Contact us
Social
  • RSS Feeds
  • CodePen
  • Mastodon
  • X
Back to Top