实验要求
运行代码
<!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>
.box{
height: 35px;
width: 700px;
text-align: center;
background-color: rgb(30, 39, 55);
border-radius: 8%;
box-shadow: 10px 10px 10px gray ;
}
li{
list-style: none;
display: inline-block;
color: white;
text-shadow: 10px 10px 10px gray;
margin-top: 7px;
}
.li2{
height: 28px;
background-color:red;
}
</style>
</head>
<body>
<div class="box">
<li>游戏1</li>
<li><div class="li2">游戏2</div></li>
<li>游戏3</li>
<li>游戏4</li>
<li>游戏5</li>
<li>游戏6</li>
<li>游戏7</li>
<li>游戏8</li>
<li>游戏9</li>
</div>
</body>
</html>
运行结果