通过相对定位实现字穿线效果
Posted f2ehe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过相对定位实现字穿线效果相关的知识,希望对你有一定的参考价值。
主要思想两个盒子外面的盒子作为线 里面的盒子相对定位背景为白色加上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>
以上是关于通过相对定位实现字穿线效果的主要内容,如果未能解决你的问题,请参考以下文章