当前位置:  开发笔记 > 编程语言 > 正文

使用背景图像为李

如何解决《使用背景图像为李》经验,为你挑选了2个好方法。

我正在使用背景图像

  • 作为按钮,但它没有完全显示; 但是,当写文本然后显示.我不想写文本它已经打印在背景图像上.我无法设置宽度 - 我该如何解决这个问题?

    #footernav li#footerlocation
    {
        display: inline;
        padding-right: 20px;
        background-image: url(../images/ourlocation.jpg);
        background-repeat: no-repeat;
        background-position: 0 -.2em;
    }
    

    Matt Howell.. 11

    您的问题是将显示设置为内联.如果您想要背景和宽度,但还需要内联类型列表,请设置float:left.



    1> Matt Howell..:

    您的问题是将显示设置为内联.如果您想要背景和宽度,但还需要内联类型列表,请设置float:left.



    2> superUntitle..:

    看一下下面的例子:

       ul#footernav li { 
            display:inline; 
            }
        ul#footernav li a{ 
            display:block; 
            width:155px;
            text-indent:-9999px;
            }
        ul#footernav li.footerlocation a{ 
            height:30px ; 
            background: url('images/image.jpg') bottom left no-repeat; 
            }
        ul#footernav li.footerlocation a:hover{ 
            height:30px ; 
            background: url(images/image.jpg) top left no-repeat; 
            }
    

  • 推荐阅读
    个性2402852463
    这个屌丝很懒,什么也没留下!
    DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
    Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有