首页
统计
友情链接
Search
1
会员开通链接
1,539 阅读
2
C++Primer 第三版
892 阅读
3
Linux系统常用命令速查手册
879 阅读
4
被称为“网站空间”的云虚拟主机,为何成了新手建站的“香饽饽”?
752 阅读
5
Adobe Photoshop 2020版
720 阅读
技术分享
软件分享
源码分享
网络资讯
HTML / CSS
登录
Search
标签搜索
Adobe
Linux
C语言
C++
编程
Premiere
视频剪辑
Illustrator
微信公众号
LAMP
数据库
Linux系统常用命令
windows
windows 系统
刷钻
爆卡会员
点播会员
QQ会员
BIOS
UEFI
优乐小哥
累计撰写
28
篇文章
累计收到
48
条评论
首页
栏目
技术分享
软件分享
源码分享
网络资讯
HTML / CSS
页面
统计
友情链接
搜索到
1
篇与
HTML / CSS
的结果
2022-12-03
text-decoration
1.text-decoration "文本装饰"的意思,代码如下2.完整CSS属性text-decoration-line:装饰线类型text-decoration-line: none; /*没有装饰线*/ text-decoration-line: underline; /* 下划线 */ text-decoration-line: line-through; /* 删除线 */ text-decoration-line: overline; /* 上划线 */text-decoration-style:装饰线样式风格text-decoration-style: solid; /* 实线 */ text-decoration-style: double; /* 双实线 */ text-decoration-style: dotted; /* 点线 */ text-decoration-style: dashed; /* 虚线 */ text-decoration-style: wavy; /* 波浪线 */text-decoration-color:装饰线的颜色text-decoration-color: #000; /* 黑色装饰线 */text-decoration-thickness: 表示装饰线的粗细text-decoration-thickness: 10px;缩写语法如下:text-decoration: text-decoration-line text-decoration-style text-decoration-color text-decoration-thickness;4个属性值位置随机,没有要求text-decoration:underline; /* 下划线 */ text-decoration: wavy underline; /* 波浪下划线 */ text-decoration: #000 underline wavy; /* 黑色波浪下划线 */ text-decoration: wavy underline 2px #000; /* 2px波浪下划线 */
2022年12月03日
145 阅读
0 评论
0 点赞