css 基本样式重置

1.ul 中每个li的小点样式

list-style: none;/*去掉小点*/

list-style: disc;/*实心圆*/

list-style: circle;/*空心圆*/

list-style: square;/*实心方形*/

list-style: decimal;/*阿拉伯数字*/

list-style: lower-roman;/*小写罗马数字*/

list-style: upper-roman;/*大写罗马数字*/

list-style: lower-alpha;/*小写英文字母*/

list-style: upper-alpha;/*大写英文字母*/

2.图片底部缝隙

vertical-align: top; /*或者bottom*/
display: block;/*块级元素*/

猜你喜欢

转载自blog.csdn.net/ITLISHUANG/article/details/88717454