为了账号安全,请及时绑定邮箱和手机立即绑定

大神帮我看看怎么做到二级列表和三级列表隐藏,然后鼠标经过和点击状态展示出来!

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">

.list_top{
    width:200px;
    height:200px;
    margin:10px auto;
    padding:10px;
    background:#ccc;
}

.list_top li{
    list-style-type:none;
    font-size:18px;
}

span{
    background-color:#999;
    border-radius:15%;
    line-height:20px;
}

.top1 li{
    font-size:16px;
}

.top2 li{
    font-size:14px;
}

.list_top a{
    text-decoration:none;
    color:black;
}

.list_top li:hover,.list_top li:active{
    cursor:pointer;
    font-size:20px;
}

</style>
</head>

<body>
<!--在此制作一个嵌套列表-->

<div class="list_top">
    <ul>
        <li><a href="#" target="_blank"><span>首页</span></a></li>
        <li><span>课程中心</span>
            <ul class="top1">
                <li><span>Web前端</span>
                    <ul class="top2">
                        <Li><a href="#" target="_blank"><span>HTML</span></a></Li>
                        <li><a href="#" target="_blank"><span>CSS</span></a></li>
                        <Li><a href="#" target="_blank"><span>JavaScript</span></a></Li>
                        <li><a href="#" target="_blank"><span>jQuery</span></a></li>
                    </ul>
                </li>
                <li><a href="#" target="_blank"><span>Android开发</span></a></li>
                <li><a href="#" target="_blank"><span>PHP开发</span></a></li>
            </ul>
        </li>
    </ul>
</div>
</body>
</html>

正在回答

2 回答

隐藏的时候将top2设置为display:none

隐藏的时候将top2中间的属性 top2{: display:none  ;} 显示的话  .top1 li a:hover .top2{ display:block }

哇  刚写完看到时间是18年



0 回复 有任何疑惑可以回复我~

CSS hover 能做鼠标滑过 某个元素,让他的display:block;  点击事件需要通过JS 来做。 onclick 事件

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大神帮我看看怎么做到二级列表和三级列表隐藏,然后鼠标经过和点击状态展示出来!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信