悬浮框,中间文字两边横线

ぃ、小莉子 提交于 2020-01-29 03:50:54

wxml在这里插入图片描述
wxss
悬浮框

.mask {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #999;
    z-index: 9999;
    top: 0;
    left: 0;
    opacity: 0.5;
}

中间文字两边横线

.tip_text {
    height: 64rpx;
    line-height: 44rpx;
    font-size: 32rpx;
    text-align: center;
    margin-top: 20rpx;
}

.tip_text .line {
    display: inline-block;
    width: 200rpx;
    border: 1rpx solid lightgrey;
}

.tip_text .txt {
    color: black;
    vertical-align: middle;
    vertical-align: -20%;
    margin: 0 20px;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!