HTML5设计一个导航侧边栏?
发布网友
发布时间:2022-04-23 09:42
我来回答
共2个回答
热心网友
时间:2023-10-03 23:04
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin:0;
padding:0;
}
ul{
list-style: none;
background-color: black;
color:blanchedalmond;
width: 100px;
line-height: 48px;
}
li:nth-of-type(2n+1){
background-color: blue;
}
li:hover{
color: red;
background-color: yellow;
}
</style>
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
</ul>
</body>
</html>
请采纳
热心网友
时间:2023-10-03 23:04
使用公式(an+ b).描述:a代表一个循环的大小,N是一个计数器(从0开始),以及b是偏移量。
p:nth-of-type(2n+0)
{
background:red;
}
p:nth-of-type(2n+1)
{
background:blue;
}