css初始化

初始化

ul li
标签的padding和margin
 
 
一些元素,默认带有padding,比如ul标签。
graphic
所以,我们为了做站的时候,便于控制,总是喜欢清除这个默认的padding
  1.               *{
  2.                      margin: 0;
  3.                      padding: 0;
  4.               }
*的效率不高,所以我们使用并集选择器,罗列所有的标签(不用背,有专业的清除默认样式的样式表,今后学习):
  1. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
  2.     margin:0;
  3.     padding:0
  4. }
 
 
@charset "utf-8";
 
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0; margin: 0;
}
fieldset,img { border: 0; }
table {
    border-collapse: collapse; border-spacing: 0;
}
ol,ul { list-style: none; }
address,caption,cite,code,dfn,em,strong,th,var {font-weight: normal;font-style: normal; }
caption,th{text-align: left;}
h1,h2,h3,h4,h5,h6 { font-weight: normal;font-size: 100%; }
q:before,q:after { content: '';}
abbr,acronym {border: 0;}
 
/*
  <link rel="stylesheet" type="text/css" href="css/public.css"/>
  <style>
    a{text-decoration:none;}//去掉下划线
    a:hover{text-decoration:underline;}//a变化
  </style>
*/
 
 
posted @ 2019-03-04 10:04  言穹  阅读(208)  评论(0编辑  收藏  举报