奇数偶数设置背景
Posted omehtin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了奇数偶数设置背景相关的知识,希望对你有一定的参考价值。
页面加载完成后,将奇数列的li背景色设置为红色,偶数列li背景色设置为绿色
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>奇数、偶数</title>
</head>
<body>
<style type="text/css">
.oe
list-style: none;
width: 250px;
.oe li:nth-of-type(odd)
background:green
.oe li:nth-of-type(even)
background: red;
</style>
<ul class="oe">
<li>li+1</li>
<li>li+2</li>
<li>li+3</li>
<li>li+4</li>
<li>li+5</li>
<li>li+6</li>
</ul>
</body>
</html>
效果图
以上是关于奇数偶数设置背景的主要内容,如果未能解决你的问题,请参考以下文章