首页 话题 小组 问答 好文 用户 我的社区 域名交易 唠叨

[分享]css下划线样式设置

发布于 2024-11-11 19:08:10
0
13

CSS 下划线样式是网页设计中常用的一种样式设置方式。下面介绍几种设置下划线的方式。/ 实线下划线样式 / .text { textdecoration: underline; } / 虚线下划线样式...

CSS 下划线样式是网页设计中常用的一种样式设置方式。下面介绍几种设置下划线的方式。

/* 实线下划线样式 */
.text {
  text-decoration: underline;
}

/* 虚线下划线样式 */
.text {
  text-decoration: underline dotted;
}

/* 双下划线样式 */
.text {
  text-decoration: underline double;
}

/* 点线下划线样式 */
.text {
  text-decoration: underline wavy;
}

/* 自定义下划线样式 */
.text {
  background-image: linear-gradient(to bottom, #f0f, #f0f);
  background-repeat: repeat-x;
  -webkit-background-size: 100% 5px;
  background-size: 100% 5px;
  background-position: bottom left;
  text-decoration: none;
  -webkit-text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
} 

在以上例子中,.text 代表一个文本元素。不同的 text-decoration 属性值可以设置不同的下划线样式。自定义下划线样式使用了背景图像和重复线性渐变的方式来实现。

评论
一个月内的热帖推荐
91云脑
Lv.1普通用户

62849

帖子

14

小组

291

积分

赞助商广告
站长交流