在css3中,odd和even用于在伪类选择器中作为关键字选中指定元素,odd表示奇数元素,even表示偶数元素;odd和even常与“:nth-child(n)”选择器配合使用,语法“元素:选择器(odd或even){css样式代码}”。
本教程操作环境:windows10系统、CSS3&&HTML5版本、Dell G3电脑。
odd代表奇数,even代表偶数。
odd和even常用于在伪类选择器中选中指定的元素。
示例如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <style> p:nth-child(odd) { background:#ff0000; } p:nth-child(even) { background:#0000ff; } </style> </head> <body> <h1>This is a heading</h1> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p><b>注意:</b> Internet Explorer 8 and以及更早版本的浏览器 :nth-child()选择器.</p> </body> </html>
输出结果:
(学习视频分享:css视频教程)
以上是css3中odd和even的用法是什么的详细内容。更多信息请关注PHP中文网其他相关文章!