1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-24 14:13:06 +02:00

add [hidden] utility for hiding any html element (see #15274 for more context)

This commit is contained in:
Mark Otto
2014-12-23 04:10:59 -08:00
parent 2b16cb921c
commit f9aec74124
9 changed files with 30 additions and 15 deletions

View File

@@ -51,9 +51,16 @@
.show {
display: block !important;
}
// Always hide an element with the `hidden` HTML attribute (from PureCSS).
[hidden] {
display: none !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
@include text-hide();
}