中间有字的分隔线(页面底部提示

wxml

wxml

<view class="line">
  <span>到底啦,我是有底线的</span>
</view>

wxss

/* 分隔线–底部 */

.line{
    width: 90%;    /* 分隔线的长度 */
    margin: auto;
    height: 1px;    /* 分隔线粗细 */
    text-align: center;
    font-size: 24rpx;
    color: #aaa;
    background: #ccc;
    margin-top: 5px;
    margin-bottom: 22px;
}
.line span{
    position: relative;
    top: -8px;
    background: #fff;
    padding: 0px 10px;
}

猜你喜欢

转载自blog.csdn.net/weixin_43865875/article/details/123253825