流浪者个人空间

我就像一只无头苍蝇
在这繁华落寞的世界里摸爬滚打,带着伤痕不停歇。

  • facebook
  • twitter
  • linkin
  • technorati
  • myspace

我常用的一套css初始化

发布于2018-05-31 14:26 评论(0) 阅读()

样式初始化
所有内容

ul, li, html, body, h1, h2, h3, h4, h5, h6, p {

margin: 0; padding: 0; font-weight: normal;

}

fieldset, legend, summary, i, em {

font-style: normal; outline-style: none;

}

img, input, button {

border: none; padding: 0; outline-style: none;

}

ul, ol, li {list-style: none;}

/* 清除浮动*/

.clearfix:before,.clearfix:after{ content:""; display:table; }

.clearfix:after{ clear:both; }

.clearfix{ *zoom:1;/*IE/7/6*/ }

a { color: #000000; text-decoration: none; }

a:hover { text-decoration: underline; }

a:active { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/*文本被选中时颜色和背景色*/

*::-webkit-selection { background: #000; color: #000; }

*::-moz-selection { background: #000; color: #000; }

*::selection { background: #000; color: #000; }

/*隐藏select下拉三角*/

select::-ms-expand { display: none; }

/*IE中隐藏输入框输入内容时后面的小叉*/

::-ms-clear, ::-ms-reveal{ display: none; }

/*表单获得焦点时边框颜色*/

input:focus, textarea:focus { outline:solid 1px #35cde8; background: #000; }