搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS :first-child 伪类示例</title> <style> ol{ padding: 0; list-style: none; } ol li{ padding: 10px 0; border-top: 1px solid #000000; } li:first-child { border-top: none; } </style> </head> <body> <h1>简单有序列表</h1> <ol> <li>Mix ingredients</li> <li>Bake in oven for an hour</li> <li>Allow to stand for ten minutes</li> </ol> <p> <strong>注意</strong>:要使<code>:first-child </code>在IE8及更低版本中运行,必须在顶部声明<code> <!DOCTYPE> </code> 文档。</p> </body> </html>
运行结果