码迷,mamicode.com
首页 > Web开发 > 详细

CSS实现DIV感应鼠标Hover时的显示隐藏效果

时间:2014-10-21 12:12:35      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   on   log   

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS实现DIV感应鼠标Hover时的显示隐藏效果</title>
<style>
.wrap{}
.wrap .box{border:2px solid red;width:200px;height:200px;float:left;margin-right: 10px;margin-bottom: 10px;}
.wrap .box:hover h1{display:block;}
.wrap .box h1{background:#333;color:white;display:none;}
</style>
</head>
<body>
    <div class="wrap">
        <div class="box">
            <h1>石家庄vi设计</h1>
        </div>
        <div class="box">
            <h1>jm880.cn</h1>
        </div>
        <div class="box">
            <h1>河北广告策划公司</h1>
        </div>
    </div>
</body>
</html>

 

CSS实现DIV感应鼠标Hover时的显示隐藏效果

标签:style   blog   http   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/youtianxia/p/4039856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!