尝试尝试我的链接风格

时间:2019-09-30 作者:Jake Ward

我正在尝试编辑我的超链接的样式,使其像当前一样加下划线,但在单词和下划线之间有更多的空间。

这可能吗?

https://stridedigital.com/

1 个回复
SO网友:Saulo Padilha

这是通过CSS完成的。您必须使用“border bottom”属性,而不是“文本装饰:下划线;”因此,您可以更灵活地使用线路。

a {
    text-decoration: none; /* remove the default underline; */
    border-bottom: 1px solid blue; /* Set the border width and color. */
    padding-bottom: 3px; /* Set the distance between the word and the line */
}
使用border bottom,您还可以进行具有良好视觉效果的过渡。

a {color: blue; border-bottom: 2px solid blue;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}

a:hover {color: blue; border-bottom: 2px solid red;}

相关推荐

Permalinks setting

所以,我知道这是一个基本的问题,但奇怪的是,它对我不起作用。我想要的:https://example.com/blog/thema/类别名称/postname(用于帖子)https://example.com/blog/thema/类别名称(适用于类别)以下是我的设置:遗憾的是,这行不通。以下是有关在什么设置下工作的详细信息:Posts: /blog/thema/%category%/%postname%/ + Category: blog/thema = 分类工作,帖子获取404Posts: /%cat