その他の問題6~10

2837 ワード

6、CSSセレクタはどれらがありますか?継承できる属性はどれですか?優先度アルゴリズムはどのように計算しますか?CSS 3の新しい偽類はあれらがありますか?
CSS    :
1.id   (# myid)
2.    (.myclassname)
3.     (div, h1, p)
4.     (h1 + p)
5.    (ul > li)
6.     (li a)
7.      ( * )
8.     (a[rel = "external"])
9.     (a: hover, li:nth-child)

      :
1.font-size
2.font-family
3.color
4.text-indent

       :
1.border
2.padding
3.margin
4.width
5.height

     :
1.       ,               ;
2.              ;
3.!important >  id > class > tag  
4.important         ,     id   

CSS3      :
p:first-of-type             

。 p:last-of-type

。 p:only-of-type

。 p:only-child

。 p:nth-child(2)

。 :enabled :disabled 。 :checked 。


7、displayの値をリストして、彼らの役割を説明します.positionの値、relativeとabsoluteはそれぞれ誰に対して位置決めされていますか?
display      : 
1.block           。
2.inline    。           。
3.inline-block          ,              。
4.list-item           ,         。

position        :
1.absolute          ,    static                 。 
2.fixed          ,            ( IE   )。
3.relative          ,                。 
4.static    。    ,          (   top, bottom, left, right z-index   )。
5.inherit          position     。

8、❤CSS 3にはどのような新しい特性がありますか?
1. CSS3    (border-radius),  (box-shadow),
2.       (text-shadow、),    (gradient),  (transform)
3. transform:rotate(9deg) scale(0.85,0.90) translate(0px,-30px) skew(-9deg,0deg);//   ,  ,  ,  
4.       CSS         rgba 
5.  CSS3           ::selection.
6.     ,    
7. border-image

9、なぜCSSスタイルを初期化するのですか?
           ,                  ,    CSS                    。

  ,       SEO      ,         ,              。

        : 
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; }
body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53; }
h1, h2, h3, h4, h5, h6{ font-size:100%; }
address, cite, dfn, em, var { font-style:normal; }
code, kbd, pre, samp { font-family:couriernew, courier, monospace; }
small{ font-size:12px; }
ul, ol { list-style:none; }
a { text-decoration:none; }
a:hover { text-decoration:underline; }
sup { vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
legend { color:#000; }
fieldset, img { border:0; }
button, input, select, textarea { font-size:100%; }
table { border-collapse:collapse; border-spacing:0; } 

10、BFC規範に対する理解?
BFC,        ,       BFC         ,                     。     BFC                (        )  margin      。

W3C CSS 2.1         ,                ,               。