Conditional Comments
/* CSS comment here */
/*
	multi-line
	comment here
*/
                                
CSS Syntax
Value
{
}
Declaration
                                
Inline style
                                
LI          {...} /* a=0 b=0 c=1 -> specificity =  1 */
UL LI        {...} /* a=0 b=0 c=2 -> specificity =  2 */
UL OL LI     {...} /* a=0 b=0 c=3 -> specificity =  3 */
LI.red       {...} /* a=0 b=1 c=1 -> specificity = 11 */
UL OL LI.red {...} /* a=0 b=1 c=3 -> specificity = 13 */
#list     	   {...} /* a=1 b=0 c=0 -> specificity = 100 */
a represents the number of #id attributes in the selector
b represents the number of class attributes
c represents the number of tag names
                                
body div { background:red; } 
div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } 
body div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } /* Win */
body div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } /* Win */
body div { background:yellow; }
.item { background:blue; } 
body div { background:red; } 
div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } /* Win */
body div { background:yellow; }
.item { background:blue; } /* Win */
body div { background:red; } 
div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } /* Win */
body div { background:yellow; }
.item { background:blue; } /* Win */
body div { background:red; } 
div { background:yellow; }
body div.item { background:blue; } 
#item { background:red; } 
html body div { background:yellow; }
                                
body div { background:red; } /* Win */
div { background:yellow; }
html body div { background:red; } /* Win */
body div { background:yellow; }
.item { background:blue; } /* Win */
body div { background:red; } 
div { background:yellow; }
body div.item { background:blue; } 
#item { background:red; } /* Win */
html body div { background:yellow; }
                                
.logo
.slogan
.copyright
.by
.all
.more
.another .details
.warning
.error-msg
                                
* {font-size: 100.01%;}
html {font-size: 62.5%;}
body {font:1em Arial, sans-serif;}
.box{
  fon-size: 1.2em; // 12px
}
.box p {
  font-size: 1.166em; // 14px (14/12=1.666)
}
text
Если не удалось найти и скачать презентацию, Вы можете заказать его на нашем сайте. Мы постараемся найти нужный Вам материал и отправим по электронной почте. Не стесняйтесь обращаться к нам, если у вас возникли вопросы или пожелания:
Email: Нажмите что бы посмотреть