基础的页面初始化样式

Posted zyt-it

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础的页面初始化样式相关的知识,希望对你有一定的参考价值。

/* 清除IE的叉号和眼睛 */
::-ms-clear, ::-ms-reveal{display: none;}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,input,form,textarea,p,th,td,hr,button{
    margin:0;
    padding:0;
    border: none;
    box-sizing: border-box;
    outline: none;
}
table{
    border-collapse:collapse;
    border-spacing:0
}
audio,canvas,video{
    display:inline-block;
    *display:inline;
    *zoom:1
}
img{
    vertical-align: middle;
    display: inline-block;
}
ul li{
    list-style-type:none;
}
button,a{
    cursor: pointer;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
      font-family: "microsoft yahei"; /* 1 */
      font-size: 100%; /* 1 */
      line-height: 1.15; /* 1 */
      margin: 0; /* 2 */
  }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
      border-style: none;
      padding: 0;
  }
a{
    text-decoration:none;
    cursor: pointer;
}
a:hover{
    text-decoration:underline;
}
body,html{
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.clear:after{
    content:‘‘;
    display:block;
    clear:both;
    height:0;
    overflow:hidden;
    visibility:hidden;
}
.clear{
    zoom:1;
}
.fl{
    float: left;
}
.fr{
    float: right;
}

 

以上是关于基础的页面初始化样式的主要内容,如果未能解决你的问题,请参考以下文章

移动Web开发基础

JSP基础

css基础 基础知识

移动Web开发基础

jQuery基础(样式篇,DOM对象,选择器,属性样式)

01-CSS基础练习:JD首页的制作(顶部和底部)