<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ padding: 0; margin: 0; }/*界面初始化*/ ul,a{ font-size: 20px; /*字体大小*/ background-color: pink; /*背景颜色*/ color: #fff; /*字体颜色*/ width: 100px; /*宽度*/ text-align: center; /*水平位置*/ } a{ display: block; } .plat{ display: none; } .content:hover .plat{ display: block; clear: both; } .content:hover li a{ background-color: wheat; } </style> </head> <body> <ul class="content"> <a >服装</a> <ul class="plat"> <li><a>外套</a></li> <li><a>棉袄</a></li> <li><a>裤子</a></li> </ul> </ul> </body> </html>用id替换class达到同样效果
时间: 2023-07-09 13:53:34 浏览: 229
网页期末作业(纯html+css实现).docx
好的,可以将代码中的 `class` 替换为 `id`,达到同样的效果。具体实现方法如下:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
padding: 0;
margin: 0;
}/*界面初始化*/
ul,a{
font-size: 20px; /*字体大小*/
background-color: pink; /*背景颜色*/
color: #fff; /*字体颜色*/
width: 100px; /*宽度*/
text-align: center; /*水平位置*/
}
a{
display: block;
}
#content #plat{
display: none;
}
#content:hover #plat{
display: block;
clear: both;
}
#content:hover li a{
background-color: wheat;
}
</style>
</head>
<body>
<ul id="content">
<a >服装</a>
<ul id="plat">
<li><a>外套</a></li>
<li><a>棉袄</a></li>
<li><a>裤子</a></li>
</ul>
</ul>
</body>
</html>
```
在上面的代码中,我们将 `class` 替换为了 `id`,并且在 CSS 中使用 `#` 来表示 `id` 选择器。这样就可以达到同样的效果了。
需要注意的是,在 HTML 中,`id` 必须是唯一的,而 `class` 可以重复使用。所以在替换 `class` 为 `id` 时,需要确保每个元素的 `id` 都是唯一的。
阅读全文