四、清除button、input、select、a、li默认样式

1、去掉表格之间的间隙,给table一个属性

border-collapse:collapse;

2、li去掉前面的点

list-style-type:none;

3、input清除原来样式

input{    
    background:none;    
    outline:none;    
    border:0px;  
}  

4、button去掉样式

border:0px;
background-color:transparent;

select去掉样式

select{
    /*隐藏select的下拉图标*/
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

5、css页面点击文字出现蓝色底色去掉方法

-webkit-user-select:none

6、去掉a标签的样式

text-decration:none

你可能感兴趣的:(四、清除button、input、select、a、li默认样式)