让我的标题标记边框正确有点问题。
我的目标是1px底部边框,顶部有一个2px更暗的65px宽边框
这是我的代码,以及指向小提琴的链接
h1, h2, h3{
border-bottom:1px solid #ddd;
}
h1:before, h2:before, h3:before{
content: " ";
position: absolute;
bottom:0;
z-index: -1;
width:65px;
border-bottom: 2px solid #666;
}
答案 0 :(得分:4)
答案 1 :(得分:0)