a{
/*a标签去下划线*/
text-decoration: none;
}
ul li{
/*无序列表去小点*/
list-style: none;
}
div{
/*加边框线*/
border: 1px solid red;
/*加背景色*/
background: red;
/*等同于*/
background-color: red;
/*加背景图*/
background: url(/*路径*/);
/*等同于*/
background-image: url(/*路径*/);
/*盒子变圆或者圆角*/
border-radius: 50%;
border-radius: 10px;
}
网友评论