图标在横线的中间!

Posted wuli-youhouli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图标在横线的中间!相关的知识,希望对你有一定的参考价值。

最终的效果:

技术分享图片

1 <div class="line-icon">
2     <p></p>
3     <span>标题</span>
4 </div>
 1 <style>
 2     .line-icon{
 3         position: relative;
 4         height:50px;
 5         width:100%;
 6         border:1px solid black;
 7     }
 8     .line-icon p,.line-icon span{
 9         position:absolute;
10         top:50%;
11         left:50%;
12         transform: translate(-50%,-50%);
13         background:red;
14     }
15     .line-icon p{
16         top:10px;
17         height:1px;
18         width:50%;
19         z-index:-1;
20     }
21     .line-icon span{
22         height:30px;
23         width:50px;
24         line-height:30px;
25         text-align:center;
26         z-index: 1;
27         background: white;
28     }
29 </style>

这种效果常用于文档的的标题和分类上。日常写项目的时候也很常用。

以上是关于图标在横线的中间!的主要内容,如果未能解决你的问题,请参考以下文章

CSS请问做CSS的横线怎么做啊?

CSS怎么给数字中间加一横线

word表格被奇怪的横线分隔了,还有中间一大段空白拉不上去?

在protel中如何在字母上面加上横线

css实现文字在横线上居中

css中怎么样将文字放在一条横线中间