【发布时间】:2014-01-08 01:54:50
【问题描述】:
让我的标题标签边框正确有些问题。
我的目标是底部边框为 1 像素,顶部边框为 2 像素,宽度为 65 像素
这是我的代码,以及指向小提琴的链接
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;
}
【问题讨论】: