文字两边的横线实现

横线用到了伪类进行实现。

css:

h4,h5 {
    text-align: center;
}
h5{
    color: gray;
}
.onimg_title:before{

    display: inline-block;

    position: relative;

    top:-7px;

    right: 20px;

    content: "";

    width: 100px;

    height: 0px;

    border: 1px solid black;

}
.onimg_title:after{

    display: inline-block;

    position: relative;

    top:-7px;

    left: 20px;

    content: "";

    width: 100px;

    height: 0px;

    border: 1px solid black;

}

  

html:

<div >
    <h4>  <span class="onimg_title">买实惠</span></h4>
    <h5>热门促销</h5>
</div>

  

时间: 2024-10-10 22:38:14

文字两边的横线实现的相关文章

文字两边加横线

<div id="login_frame"> <div class="with-line">推荐使用以下浏览器</div> </div> <style type="text/css"> /* 文字两边横线 */ #login_frame .with-line { width:462px;font-size: 16px; color: #000; margin: 0 auto; posit

文字两侧加横线的解决方案

文字两侧加横线的需求你遇到过吗?在参与的项目中我遇到过这种需求,总结了一下,目前分为两种: 一,文字所在的背景是纯色,单一颜色: 二,文字所在背景是花色,或者是背景图片 给你一些时间,思考一下: 脑海闪过了什么?定位,浮动,背景图片,伪元素...还是大脑一片空白? 条条大路通罗马,相信给你足够的时间,静静的坐在开着空调的房间里,你会得到自己的实现方法. 先看第一种,背景纯色的实现方案. 用的一个方法是用一个空的标签,来写这条横线.当然也可以用背景图,切一个中间透明,两边白条的图片.也可以使用伪元

TextView过长显示省略号, TextView文字中间加横线

1.TextView显示的内容过长时自己主动显示省略号: 省略号的位置: android:ellipsize="end"   省略号在结尾 android:ellipsize="start" 省略号在开头 android:ellipsize="middle"    省略号在中间 TextView显示的行数: android:singleline="true" android:lines="2" 在java文

UIlabel文字两边对齐

iOS开发 UIlabel 文字两边对齐 思路:算出每个字符之间的宽度 给UIlabel添加一个分类即可,代码如下: * 必须导入这个头文件:CoreText/CoreText.h p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #000000; background-color: #fffcea } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Me

CSS笔记---文字两边对齐

<style> .box{ width: 1000px; height: 500px; background-color: #aa0000; margin:0 auto; } .tester{ width: 100px; height: 100px; background-color: #44931c; color:#fff; text-align: justify; } .tester>span{ /*display: inline-block;*/ padding-left: 100

文字特效代码大全

代码收集来源于网络博友,感谢博友提供,本人只收集,整理,说明. 1.删除线:<FONT style="TEXT-DECORATION: line-through">写上你想写的字</FONT> 效果如下 写上你想写的字 2.文字顶部加横线:<font style="text-decoration:overline">写上你想写的字</font> 效果如下 写上你想写的字 3.带背景字体:<FONT style=&

html属性标签

<!> 跑马灯  <marquee>...</marquee>普通卷动 <marquee behavior=slide>...</marquee>滑动 <marquee behavior=scroll>...</marquee>预设卷动 <marquee behavior=alternate>...</marquee>来回卷动 <marquee direction=down>...<

html标签属性大全

<marquee>...</marquee>普通卷动 <marquee behavior=slide>...</marquee>滑动 <marquee behavior=scroll>...</marquee>预设卷动 <marquee behavior=alternate>...</marquee>来回卷动 <marquee direction=down>...</marquee>向下

HTML语言基本标签

创建一个HTML文档 <html></html> 设置文档标题以及其他不在WEB网页上显示的信息 <head></head> 设置文档的可见部分 <body></body> 标题标签 将文档的题目放在标题栏中 <title></title> 文档整体属性 设置背景颜色,使用名字或十六进制值 <body bgcolor=?> 设置文本文字颜色,使用名字或十六进制值 <body text=?>