html

来源:互联网 发布:移动网络电视好不好 编辑:程序博客网 时间:2024/06/08 23:20

html - 鼠标悬停文本内容与边框变色

<!DOCTYPE html><html>    <head>        <meta charset="utf-8" />        <title></title>        <style>            .demo{                border: 1px solid #ffffff;                width: 100px;                height: 100px;                text-align: center;                float: left;            }            .icon{                width: 60px;                height: 56px;                background: url(img/tb01.png) no-repeat;                margin: 10px auto;            }            .demo:hover{                border: 1px solid red;                cursor: pointer;            }            .demo:hover .icon{                background: url(img/tb02.png) no-repeat;            }            .demo:hover .font{                color: red;            }        </style>    </head>    <body>        <div class="demo">            <div class="icon">            </div>            <div class="font">                文本内容            </div>        </div>        <div class="demo">            <div class="icon">            </div>            <div class="font">                文本内容            </div>        </div>        <div class="demo">            <div class="icon">            </div>            <div class="font">                文本内容            </div>        </div>        <div class="demo">            <div class="icon">            </div>            <div class="font">                文本内容            </div>        </div>    </body></html>
原创粉丝点击