📜  边框底部较小的 div - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:54.598000             🧑  作者: Mango

代码示例1
div {
  width   : 200px;
  height  : 50px;   
  position: relative;
  z-index : 1;
  background: #eee;
}

div:before {
  content : "";
  position: absolute;
  left    : 0;
  bottom  : 0;
  height  : 1px;
  width   : 50%;  /* or 100px */
  border-bottom:1px solid magenta;
}