使用CSS后,如果text-decoration:underline
应用了文本,是否可以增加文本与下划线之间的距离?
text-underline-position: under;
并且text-decoration-skip: ink;
请注意,这可能与旧版浏览器不向后兼容。
text-underline-offset
在这里:bugs.chromium.org/p/chromium/issues/...
使用CSS后,如果text-decoration:underline
应用了文本,是否可以增加文本与下划线之间的距离?
text-underline-position: under;
并且text-decoration-skip: ink;
请注意,这可能与旧版浏览器不向后兼容。
text-underline-offset
在这里:bugs.chromium.org/p/chromium/issues/...
Answers:
不,但您可以选择类似border-bottom: 1px solid #000
和padding-bottom: 3px
。
如果要使用与“下划线”相同的颜色(在我的示例中为边框),则只需省略颜色声明,即border-bottom-width: 1px
和border-bottom-style: solid
。
对于多行,可以将多行文本包装在元素内的跨度中。例如,<a href="#"><span>insert multiline texts here</span></a>
然后添加border-bottom
并padding
在<span>
- 演示上
<a href="#"><span>insert multiline texts here</span></a>
然后在上添加border-bottom-bottom和padding <span>
。jsfiddle.net/Aishaterr/vrpb2ey7/1
2019年更新: CSS工作组发布了文本装饰级别4的草案,该草案将添加一个新属性text-underline-offset
(以及text-decoration-thickness
)以允许控制下划线的确切位置。在撰写本文时,它是一个早期阶段的草案,尚未被任何浏览器实现,但看起来最终将使该技术过时。
下面是原始答案。
border-bottom
直接使用的问题是,即使使用padding-bottom: 0
,下划线也往往离文本太远而无法看起来很好。因此,我们仍然没有完全的控制权。
一种可以提高像素精度的解决方案是使用:after
伪元素:
a {
text-decoration: none;
position: relative;
}
a:after {
content: '';
width: 100%;
position: absolute;
left: 0;
bottom: 1px;
border-width: 0 0 1px;
border-style: solid;
}
通过更改 bottom
属性(可以使用负数),可以将下划线精确定位在所需位置。
这种技术要提防的一个问题是,它在换行时表现得有些奇怪。
你可以用这个 text-underline-position: under
请参阅此处以获取更多详细信息:https : //css-tricks.com/almanac/properties/t/text-underline-position/
另请参阅浏览器兼容性。
这对我来说很有效。
<style type="text/css">
#underline-gap {
text-decoration: underline;
text-underline-position: under;
}
</style>
<body>
<h1 id="underline-gap"><a href="https://Google.com">Google</a></h1>
</body>
text-underline-position
不是Firefox的支持下,按照developer.mozilla.org/en-US/docs/Web/CSS/...
深入了解视觉样式的细节text-decoration:underline
是徒劳的,因此您将不得不采用某种技巧,将移除内容text-decoration:underline
替换为其他内容,直到遥远的神奇CSS版本为我们提供了更多控制权。
这为我工作:
a {
background-image: linear-gradient(
180deg, rgba(0,0,0,0),
rgba(0,0,0,0) 81%,
#222222 81.1%,
#222222 85%,
rgba(0,0,0,0) 85.1%,
rgba(0,0,0,0)
);
text-decoration: none;
}
<a href="#">Lorem ipsum</a> dolor sit amet, <a href="#">consetetur sadipscing</a> elitr, sed diam nonumy eirmod tempor <a href="#">invidunt ut labore.</a>
这是具有所有专有属性的版本,具有一些向后兼容性:
a {
/* This code generated from: http://colorzilla.com/gradient-editor/ */
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 81%, rgba(0,0,0,1) 81.1%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 85.1%, rgba(0,0,0,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(81%,rgba(0,0,0,0)), color-stop(81.1%,rgba(0,0,0,1)), color-stop(85%,rgba(0,0,0,1)), color-stop(85.1%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 81%,rgba(0,0,0,1) 81.1%,rgba(0,0,0,1) 85%,rgba(0,0,0,0) 85.1%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 81%,rgba(0,0,0,1) 81.1%,rgba(0,0,0,1) 85%,rgba(0,0,0,0) 85.1%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 81%,rgba(0,0,0,1) 81.1%,rgba(0,0,0,1) 85%,rgba(0,0,0,0) 85.1%,rgba(0,0,0,0) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 81%,rgba(0,0,0,1) 81.1%,rgba(0,0,0,1) 85%,rgba(0,0,0,0) 85.1%,rgba(0,0,0,0) 100%); /* W3C */
text-decoration: none;
}
更新:SASSY版本
我为此做了一个scss mixin。如果您不使用SASS,则上述常规版本仍然适用。
@mixin fake-underline($color: #666, $top: 84%, $bottom: 90%) {
background-image: linear-gradient(
180deg, rgba(0,0,0,0),
rgba(0,0,0,0) $top,
$color $top + 0.1%,
$color $bottom,
rgba(0,0,0,0) $bottom + 0.1%,
rgba(0,0,0,0)
);
text-decoration: none;
}
然后像这样使用它:
$blue = #0054a6;
a {
color: $blue;
@include fake-underline(lighten($blue,20%));
}
a.thick {
color: $blue;
@include fake-underline(lighten($blue,40%), 86%, 99%);
}
更新2:后裔提示
如果您的背景色是纯色,请尝试添加稀色text-stroke
或text-shadow
与背景色相同的颜色,以使后代看起来更好。
信用
这是我最初在https://eager.io/app/smartunderline上发现的技术的简化版本,但此后该文章已被删除。
我知道这是一个古老的问题,但是对于单行文本设置display: inline-block
然后设置,height
对我来说控制边界和文本之间的距离效果很好。
@ last-child的答案是一个很好的答案!
但是,在我的H2上添加边框会产生比文字更长的下划线。
如果您正在动态编写CSS,或者像我一样幸运,并且知道文本将是什么,则可以执行以下操作:
将其更改为content
正确的长度(即相同
文字),将字体颜色设置为transparent
(或rgba(0,0,0,0)
)
要加下划线<h2>Processing</h2>
(例如),请将最后一个孩子的代码更改为:
a {
text-decoration: none;
position: relative;
}
a:after {
content: 'Processing';
color: transparent;
width: 100%;
position: absolute;
left: 0;
bottom: 1px;
border-width: 0 0 1px;
border-style: solid;
}
display: inline-block
会解决它。用content
看起来像是hack的hack 替换文本可能会在许多方面中断。
看看我的小提琴。
您将需要使用border width属性和padding属性。我添加了一些动画使其看起来更酷:
body{
background-color:lightgreen;
}
a{
text-decoration:none;
color:green;
border-style:solid;
border-width: 0px 0px 1px 0px;
transition: all .2s ease-in;
}
a:hover{
color:darkblue;
border-style:solid;
border-width: 0px 0px 1px 0px;
padding:2px;
}
<a href='#' >Somewhere ... over the rainbow (lalala)</a> , blue birds, fly... (tweet tweet!), and I wonder (hmm) about what a <i><a href="#">what a wonder-ful world!</a> World!</i>
作为多行文本或链接的替代方法,您可以将文本包装在块元素内的范围内。
<a href="#">
<span>insert multiline texts here</span>
</a>
那么您只需在上添加border-bottom和padding即可<span>
。
a {
width: 300px;
display: block;
}
span {
padding-bottom: 10px;
border-bottom: 1px solid #0099d3;
line-height: 48px;
}
您可以参考这个小提琴。https://jsfiddle.net/Aishaterr/vrpb2ey7/2/
如果你想:
在下划线上,您可以将1像素高的背景图片用于repeat-x
和100% 100%
位置:
display: inline;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAABCAYAAAD0In+KAAAAEUlEQVQIW2M0Lvz//2w/IyMAFJoEAis2CPEAAAAASUVORK5CYII=') repeat-x 100% 100%;
您可以用100%
其他类似东西替换第二个,px
或em
调整下划线的垂直位置。calc
如果要添加垂直填充,也可以使用,例如:
padding-bottom: 5px;
background-position-y: calc(100% - 5px);
当然,您也可以使用其他颜色,高度和设计制作自己的base64 png模式,例如:http : //www.patternify.com/只需将正方形的宽度和高度设置为2x1。
我可以使用U(下划线标签)来做
u {
text-decoration: none;
position: relative;
}
u:after {
content: '';
width: 100%;
position: absolute;
left: 0;
bottom: 1px;
border-width: 0 0 1px;
border-style: solid;
}
<a href="" style="text-decoration:none">
<div style="text-align: right; color: Red;">
<u> Shop Now</u>
</div>
</a>
这就是我用的:
的HTML:
<h6><span class="horizontal-line">GET IN</span> TOUCH</h6>
CSS:
.horizontal-line { border-bottom: 2px solid #FF0000; padding-bottom: 5px; }
我用什么:
<span style="border-bottom: 1px solid black"> Enter text here </span>