Heim  >  Artikel  >  Web-Frontend  >  (原)前端知识杂烩_html/css_WEB-ITnose

(原)前端知识杂烩_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:30:371073Durchsuche

1. css hack

1  .pad{
2      padding: 17px 0 0 17px;    /*  普通写法  */  
3      *padding: 17px 0 0 17px;   /*  *为IE7   *+html css()为IE7  */
4      _padding: 17px 0 0 17px;    /*   _为IE6  *html css()为IE6  */

5  } 

 

2. css 设置圆角

1  .round{
2      -moz-border-radius:  100px;
3      -webkit-border-radius:  100px;
4       border-radius: 100px;     

5 }

 

3. css  盒子阴影   (x,y,阴影模糊度,阴影颜色)

 .shadow{-moz-box-shadow: 3px 3px 4px #fff; -webkit-box-shadow: 3px 3px 4px #fff; box-shadow: 3px 3px 4px #fff;}

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn