图片单独显示上面一半鼠标一移上去就显示下面一半 用CSS代码

 我来答
慧走得庚远
2013-07-19 · TA获得超过678个赞
知道小有建树答主
回答量:246
采纳率:0%
帮助的人:228万
展开全部

<style>

.hellow{ background:url(bg.jpg) no-repeat left top; height:20px; width:100px; text-align:center; color:#fff; font-size:14px; line-height:20px; cursor:pointer}

.hellow:hover{ background:url(bg.jpg) no-repeat left bottom;}

</style>

<div class="hellow">你好</div>

图片保存为bg.jpg

然后给div定义为hellow 

鼠标放上去的样式为:hover 设置背景图片 不重复 左  底

更多追问追答
追问
在IE上面没有用,谷歌有用,我还要考虑到兼容性!那怎么弄!
追答
因为直接给这个div加的hover ie不支持 如果给这个文字加上链接就支持了 你再试下
因为图片是纯色的 所以我直接把纯色改成背景颜色了.

a{ text-decoration:none;}
.hellow a{ background: #F60;height:20px; width:100px; text-align:center; color:#fff; font-size:14px; line-height:20px; cursor:pointer; display:block;}
.hellow a:hover{ background:#90F;height:20px; width:100px; text-align:center; color:#fff; font-size:14px; line-height:20px; cursor:pointer; display:block;}

你好
你看下这个效果不明白的再联系我
九头草鸡
2013-07-19 · TA获得超过239个赞
知道小有建树答主
回答量:259
采纳率:0%
帮助的人:172万
展开全部
#button {
    display:block;
    width:112px;
    height:36px;
    background:url(notitle.png) 0 0 no-repeat;
}
#button:hover {
    background:url(notitle.png) 50% 100% no-repeat;
}

 

追问
在IE上面没有用,谷歌有用,我还要考虑到兼容性!那怎么弄!
追答

        <style>
            ul li {
                margin:0;
                padding:0;
                list-style:none;
            }
        
            .button {
                background:url(notitle.png) no-repeat;
                background-position:0 0;
            }
            
            .button a {
                display:block;
                width:112px;
                height:36px;
                line-height:36px;
                text-align:center;
                color:#f1f1f1;
                text-decoration:none;
            }                
            
            .button a:hover {
                background:transparent url(notitle.png) 0 100% no-repeat;
                color:#424242;
            }
        </style>

        <ul>
            <li class="button"><a href="#">Just a Test</a></li>
        </ul>

 这样写测试过了,在IE6下都没问题。

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式