中间带文字的hr分割线

  • Post author:
  • Post category:其他


图

<hr class="hr">
.hr {
    color: #000;
    border: 0;
    font-size: 12px;
    padding: 10px 0;
    position: relative;
}
.hr::before {
    content: "分隔线";
    position: absolute;
    padding: 0 10px;
    line-height: 1px;
    border: solid red;
    border-width: 0 100vw;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
}



版权声明:本文为guoqing2016原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。