码迷,mamicode.com
首页 > 其他好文 > 详细

通过相对定位实现字穿线效果

时间:2019-12-15 20:16:53      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:好日子   style   top   oct   doc   set   color   lang   type   

主要思想两个盒子外面的盒子作为线 里面的盒子相对定位背景为白色加上padding即可

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .line {
            width: 500px;
            height: 1px;
            background-color: red;
            margin: 0 auto;
            text-align: center;
        }
        span {
            position: relative;
            top: -10px;
            padding: 10px;
            background-color: white;
        }
    </style>
</head>
<body>
    <div class="line">
        <span>今天是一个好日子因为天气很棒</span>
    </div>
</body>
</html>

通过相对定位实现字穿线效果

标签:好日子   style   top   oct   doc   set   color   lang   type   

原文地址:https://www.cnblogs.com/f2ehe/p/12045606.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!