当我想要一些标题文字时,我遇到了这个伎俩。我喜欢它的外观,因为想知道是否有办法让目标明确。
.pagebreaker {
padding: 10px;
margin-bottom: -5px;
border-top: 4px solid #f6d241;
border-radius: 35px;
}
我尝试过负边界半径和负填充。这里有什么我想念的吗?或者这是不能做的事情?
感谢。
答案 0 :(得分:0)
使用border-bottom
.pagebreaker {
padding: 10px;
margin-bottom: -5px;
border-bottom: 4px solid #f6d241;
border-radius: 35px;
width: 300px;
height: 10px;
}

<div class="pagebreaker"></div>
&#13;