使用css将文字在水平线中显示

发布时间:2024年01月23日

方法一:

1.效果图

2.html

<!-- <div class="line">
                第三方登录
     </div> -->

3.css

/* 让文字在水平线中显示 */
 .line {
    display: flex;
    flex-direction: row;
    color: #ccc;
    font-size: 18px;
    font-weight: bolder;
}

.line:before,
.line:after {
    content: "";
    flex: 0.8 0.8;
    border-bottom: 2px solid #ccc;
    margin: auto;
}

方法二

1.效果图

2.html

<div class="divider">
                <p></p>
                <div class="divider-text">申请处理进度</div>
                <p></p>
            </div>

3.css

.divider{
    width: 100%;
    display: flex;
    p{
      width: 48%;
       height: 1px;
       border-top: 1px orange dashed;
      margin: 0;
      vertical-align: middle;
     }
    .divider-text{
      padding: 0 20px;
      color: orange;
      transform: translateY(-50%);
      display: inline-block;
      font-size: 17px;
    }
}

文章来源:https://blog.csdn.net/m0_72929120/article/details/135778208
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。