css元素hover時控制另一个元素的显示隐藏
Posted 棉晗榜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css元素hover時控制另一个元素的显示隐藏相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta content=always name=referrer>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<title>css元素hover時控制另一个元素的显示隐藏</title>
<style type="text/css">
.containerwidth:400px;height:200px;border:2px solid #ff0000;
.cu_toolbarbackground-color:#8bb907;height:100px;width:100px;display:none;
.container:hover .cu_toolbardisplay:block;
</style>
</head>
<body>
<div class="container">
<div class="cu_toolbar">
</div>
</div>
</body>
</html>
以上是关于css元素hover時控制另一个元素的显示隐藏的主要内容,如果未能解决你的问题,请参考以下文章
css实现菜单栏效果以及用hover属性去控制另一个元素样式的问题