4个回答
展开全部
我试了你的代码,的确有问题,hover和display用效果不好实现。不太清楚你具体要什么效果,不过不一定用display属性来控制,可以换种方式,用background来实现,或许也能满足你的需求,代码如下,你试试看:
<html>
<head>
<style>
div {
background:transparent;
width:100px;
height:100px;
cursor:pointer;
}
div:hover {
background:#0f0;
}
</style>
</head>
<body>
<div >
</div>
</body>
</html>
<html>
<head>
<style>
div {
background:transparent;
width:100px;
height:100px;
cursor:pointer;
}
div:hover {
background:#0f0;
}
</style>
</head>
<body>
<div >
</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该用javascript实现。style显示div是none,于是也就不会触发hover这个动作。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<style type="text/css">
.cent{background:#0CF; height:200px; width:100px;}
.cs{width:100px; height:100px; display:none; background:#F09;}
.cent:hover .cs{ display:block;}
</style>
<div class="cent">
<div class="cs">
</div>
</div>
.cent{background:#0CF; height:200px; width:100px;}
.cs{width:100px; height:100px; display:none; background:#F09;}
.cent:hover .cs{ display:block;}
</style>
<div class="cent">
<div class="cs">
</div>
</div>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询