边框底部的自定义css

时间:2015-11-01 18:23:55

标签: css border customization

我已将css应用于this thing,但是我有什么方法可以做this type的CSS吗?

是指减少边界线的底部?

1 个答案:

答案 0 :(得分:1)

看看是否有这个帮助。



p {
  position: relative;
  z-index: 1;
  width: 30px;
  background: red;
  padding: 10px;
  color: #fff;
}
p:before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 80%;
  border-bottom: 4px solid black;
  height: 1px;
}

<p>
  hello
</p>
&#13;
&#13;
&#13;