Skip to content

Instantly share code, notes, and snippets.

@tyv
Created May 24, 2012 13:25
Show Gist options
  • Save tyv/2781540 to your computer and use it in GitHub Desktop.
Save tyv/2781540 to your computer and use it in GitHub Desktop.
процентные значения берутся как правило
/*
процентные значения берутся как правило
от родителя
*/
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
}
*/
<div class="main">
<div class="wrapper">
<div class="inner"></div>
</div>
</div>
{"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