]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
mention the IE compatability for hidden attr per #17169
authorMark Otto <markdotto@gmail.com>
Sun, 23 Aug 2015 06:17:46 +0000 (23:17 -0700)
committerMark Otto <markdotto@gmail.com>
Sun, 23 Aug 2015 06:17:46 +0000 (23:17 -0700)
docs/components/utilities.md

index 1905efefe55562bbc788d0ece2babaf308222cc5..fb93fca9d22cbe46a9d66b113d09ddb9845f1110 100644 (file)
@@ -233,7 +233,7 @@ Easily clear `float`s by adding `.clearfix` **to the parent element**. Utilizes
 
 ## Hidden content
 
-Hide any HTML element with the `[hidden]` attribute. Previously, v3.x included a `.hidden` class that forced toggled content. However, we removed it due to conflicts with jQuery's `hide()` function. It's taken from [PureCSS](http://purecss.io).
+Hide any HTML element with the `[hidden]` attribute. Previously, v3.x included a `.hidden` class that forced toggled content. However, we removed it due to conflicts with jQuery's `hide()` function. It's taken from [PureCSS](http://purecss.io). While `[hidden]` technically isn't support in IE9-10, declaring it `display: none` in our CSS gets around.
 
 Furthermore, `.invisible` can be used to toggle the visibility of an element, meaning its `display` is not modified and the element can still affect the flow of the document.