This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
/* Example 1 */ | |
div { | |
display: inline-block; | |
width: 200px; | |
height: 200px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lt IE 7]><html class="no-js ie6"><![endif]--> | |
<!--[if IE 7]><html class="no-js ie7"><![endif]--> | |
<!--[if IE 8]><html class="no-js ie8"><![endif]--> | |
<!--[if gt IE 8]><!--> | |
<html class="no-js" lang="en"> | |
<!--<![endif]--> | |
<head> | |
<meta charset="UTF-8"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
/* General styles */ | |
div { | |
display: inline-block; | |
width: 200px; | |
height: 200px; | |
} | |
h2 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
/* General styles */ | |
div { | |
display: inline-block; | |
width: 200px; | |
height: 200px; | |
} | |
h2 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
/* General div styles */ | |
div { | |
display: inline-block; | |
padding: 20px; | |
text-align: center; | |
width: 200px; | |
height: 200px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
@charset "UTF-8"; | |
div { | |
display: inline-block; | |
padding: 20px; | |
text-align: center; | |
width: 200px; | |
height: 200px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
.the-icons a, .new-ico-block a { | |
display: inline-block; | |
width: 0.875em; | |
height: 0.875em; | |
line-height: 0.875em; | |
background: url("/images/social-media-icons.png") 0 0 no-repeat; } | |
.sassmeister a { | |
background-position: 0em 0em; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
h1, h2, h3, h4, h5, h6 { | |
display: inline; | |
padding: 5px; | |
} | |
h1 { | |
color: orange; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
h1, h2, h3, h4, h5, h6 { | |
display: inline; | |
} | |
/* Example 1: simple @for example */ | |
h1 { | |
font-size: 1em; | |
padding: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Output */ | |
ul { | |
list-style: none; | |
font-size: 16px; | |
line-height: 1.6; | |
} | |
a { | |
text-decoration: none; | |
color: pink; |
OlderNewer