搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>没有分组的CSS选择器示例</title> <style> h1 { font-size: 36px; font-weight: normal; } h2 { font-size: 28px; font-weight: normal; } h3 { font-size: 22px; font-weight: normal; } </style> </head> <body> <h1>标题等级 1</h1> <h2>标题等级 2</h2> <h3>标题等级 3</h3> </body> </html>
运行结果