在this website上,我遇到了一个问题:黑色像素位于主页flexslider图像轮播的左下方。
我似乎无法摆脱它,但它似乎与ul
有关。
答案 0 :(得分:2)
打开样式表并进行更改:
.slides:after {
clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
}
成:
.slides:after {
clear: both;
content: "";
display: block;
height: 0;
line-height: 0;
}
您还应该查看css content property