搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS text decoration示例</title> <style> h1 { text-decoration:overline; } h2 { text-decoration:line-through; } h3 { text-decoration:underline; } h4 { text-decoration:blink; } </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <p><strong>注意:</strong> <code>blink</code>在 IE, Chrome, or Safari中不支持.</p> </body> </html>
运行结果