Cheatography
https://cheatography.com
Reminder of best practices for optimal use of the easiest HTML / CSS frameworks.
Common helpers
.ir |
Add the .ir class to any element you are applying image-replacement to. |
When replacing an element's content with an image, make sure to also set a specific background-image: url(pathtoimage.png);, width, and height so that your replacement image appears. |
.hidden |
Add the .hidden class to any elements that you want to hide from all presentations, including screen readers. |
It could be an element that will be populated later with JavaScript or an element you will hide with JavaScript. Do not use this for SEO keyword stuffing. That is just not cool. |
.visuallyhidden |
Add the .visuallyhidden class to hide text from browsers but make it available for screen readers. |
You can use this to hide text that is specific to screen readers but that other users should not see. About invisible content, Hiding content for accessibility, HTML5 Boilerplate issue/research. |
.invisible |
Add the .invisible class to any element you want to hide without affecting layout. |
When you use display: none an element is effectively removed from the layout. But in some cases you want the element to simply be invisible while remaining in the flow and not affecting the positioning of surrounding content. |
.clearfix |
Adding .clearfix to an element will ensure that it always fully contains its floated children. |
There have been many variants of the clearfix hack over the years, and there are other hacks that can also help you to contain floated children, but the HTML5 Boilerplate currently uses the micro clearfix. |
These classes are pre-written in the boilerplate and just waiting to be used.
Websites
Ressources for starting H5BP website.
|
Created By
alexandre.achain.chez.com
Metadata
Favourited By
Comments
No comments yet. Add yours below!
Add a Comment
More Cheat Sheets by Weizu