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 | |
{ | |
position: relative; | |
width: 400px; | |
height: 400px; | |
border: 1px solid red; | |
} |
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
/* | |
списки и счетчики | |
http://clck.ru/d/_DP820mM15kId | |
http://clck.ru/d/W3EGMhVZ15kIl | |
http://clck.ru/d/yvjcixu815kJJ | |
*/ | |
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
/* | |
Стопка бумаг | |
не должна завистеть от контента: | |
может быть больше или меньше | |
http://clck.ru/d/7IfEw0cr15kKL | |
*/ | |
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 | |
{ | |
position: relative; | |
width: 400px; | |
height: 400px; | |
border: 1px solid red; | |
} |
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
/* | |
http://www.stuffandnonsense.co.uk/archives/images/specificitywars-05v2.jpg | |
http://css-tricks.com/specifics-on-css-specificity/ | |
Специфичность (вес) селектора считается | |
по баллам, которые селектор получает в зависимости | |
от того, как происходит выбор элемента. | |
В целом концепция укладывается в рамки: |
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
/* | |
1. селектор + !important в user.css > никак не повлиять | |
2. селектор + !important в style.css | |
3. селектор в style.css | |
4. селектор в user.css | |
5. селектор в browser.css > reset.css | |
*/ | |
/* | |
уберем дефолты браузера для списка |
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
/* | |
Наследуемые значения наследуются по оси потомков. | |
Практически все свойства блочной модели не наследуются | |
http://www.w3.org/TR/CSS/#properties | |
*/ | |
/* | |
Наследуемые занчения не имеют специфичности | |
это отличается от специфичности = 0 |
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 |
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 |
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 | |
{ | |
width: 200px; | |
height: 200px; | |
background: red; | |
/* | |
rgb(255,0,0); | |
rgb(100%,0%,0%); |