Created
May 24, 2012 13:45
-
-
Save tyv/2781629 to your computer and use it in GitHub Desktop.
процентные значения берутся как правило
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
/* | |
процентные значения берутся как правило | |
от родителя | |
*/ | |
html, body | |
{ | |
height: 100%; | |
} | |
.main | |
{ | |
height: 100%; | |
background: black; | |
} | |
.wrapper, | |
.inner | |
{ | |
width: 50%; | |
height: 40%; | |
background: red; | |
} | |
.inner | |
{ | |
background: yellow; | |
} | |
/* | |
что позволяет делать хитрости | |
*/ | |
.inner | |
{ | |
position: relative; | |
left: -25%; | |
margin-left: 50%; | |
} | |
/* | |
при этом это могут быть и координаты | |
*/ | |
.main | |
{ | |
background: | |
#000 | |
url(http://im5-tub-ua.yandex.net/i?id=235344349-27-72&n=5) | |
50% 50% | |
/* ^^^ счет от центра картинки */ | |
no-repeat; | |
} | |
/* | |
или размер шрифта, | |
он наследуется от родителя | |
например, | |
body | |
{ | |
font-size: 16px; | |
} | |
p | |
{ | |
font-size: 200% = 16*2 | |
} | |
*/ |
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
<div class="main"> | |
<div class="wrapper"> | |
<div class="inner"></div> | |
</div> | |
</div> |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment