我是靠谱客的博主 动人凉面,最近开发中收集的这篇文章主要介绍HTML怎么让hr在文字右边居中,将居中文本添加到类似
的行的中间
,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在不知道宽度和背景颜色的情况下解决此问题的方法如下:

结构体

Kringle

的CSS

.strike {

display: block;

text-align: center;

overflow: hidden;

white-space: nowrap;

}

.strike > span {

position: relative;

display: inline-block;

}

.strike > span:before,

.strike > span:after {

content: "";

position: absolute;

top: 50%;

width: 9999px;

height: 1px;

background: red;

}

.strike > span:before {

right: 100%;

margin-right: 15px;

}

.strike > span:after {

left: 100%;

margin-left: 15px;

}

示例:http://jsfiddle.net/z8Hnz/

双线

要创建双线,请使用以下选项之一:

1)线间距固定

.strike > span:before,

.strike > span:after {

content: "";

position: absolute;

top: 50%;

width: 9999px;

border-top: 4px double red;

示例:http://jsfiddle.net/z8Hnz/103/

2)行之间的自定义空间

.strike > span:before,

.strike > span:after {

content: "";

position: absolute;

top: 50%;

width: 9999px;

height: 5px; /* space between lines */

margin-top: -2px; /* adjust vertical align */

border-top: 1px solid red;

border-bottom: 1px solid red;

}

示例:http://jsfiddle.net/z8Hnz/105/

SASS(SCSS)版本

基于此解决方案,我添加了“具有颜色属性”的SCSS,如果它可以帮助某人...

//mixins.scss

@mixin bg-strike($color) {

display: block;

text-align: center;

overflow: hidden;

white-space: nowrap;

> span {

position: relative;

display: inline-block;

&:before,

&:after {

content: "";

position: absolute;

top: 50%;

width: 9999px;

height: 1px;

background: $color;

}

&:before {

right: 100%;

margin-right: 15px;

}

&:after {

left: 100%;

margin-left: 15px;

}

}

}

使用示例:

//content.scss

h2 {

@include bg-strike($col1);

color: $col1;

}

最后

以上就是动人凉面为你收集整理的HTML怎么让hr在文字右边居中,将居中文本添加到类似


的行的中间的全部内容,希望文章能够帮你解决HTML怎么让hr在文字右边居中,将居中文本添加到类似
的行的中间
所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部