搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 参考手册
CSS 属性大全
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3 text-decoration-style属性示例- 基础教程(div.cn)</title> <style> p { text-decoration: underline; -moz-text-decoration-style: dotted; /* Firefox */ text-decoration-style: dotted; /* Standard syntax */ } </style> </head> <body> <p>This is some decoration text.</p> </body> </html>
运行结果