css 圆角
更新时间:2023-09-02 14:24:01
编辑:保利尼奥
浏览:1491
.wenzi_news li {
position: relative;
padding: 5px 0 5px 12px;
line-height: 1.6;
font-size: 14px;
text-overflow...
.wenzi_news li {
position: relative;
padding: 5px 0 5px 12px;
line-height: 1.6;
font-size: 14px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.wenzi_news li:before {
position: absolute;
left: 0;
top: 13px;
content: "";
width: 0;
height: 0;
line-height: 0;
border: 4px solid transparent;
border-left: 5px solid #ccc;
}
.wenzi_news li a {
color: #666;
}
.wenzi_news li:hover a {
color: #056DE8
}