1.清除a標簽下劃線
a{
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
建議加上hover時顯示下劃線,便于區(qū)分鏈接和普通文本
2.清除ul,ol列表樣式
ul{
list-style: none;
}
ol{
list-style: none;
}
3.清除textbox取得焦點時輪廓
input[type="text"]{
outline: none;
}
4.清除button取得焦點時的輪廓
button[type="button"]{
border: 1px solid silver;
outline: none;
}
button[type="button"]:active{
background-color: silver;
}
添加active時候的樣式,區(qū)別點擊和非點擊狀態(tài)