0

宽屏和窄屏是个问题。。如何设置图片的位置?(网站页脚菜单栏 - 已修复)

点击图片查看详情

你能帮我吗?谢谢!

菜单条码:

     div.footer{ /* main*/
        background: none repeat scroll 0 0 #000000;
        border-top: 1px solid #222;
        bottom: 0;
        left: 12%;
        line-height: 30px;
        position: fixed;
        text-align: center;
        text-decoration: none;
        width: 963px;
        z-index: 999;
        margin: 0 auto;
    }
    div.footer a {
        color: #999;
    }
    div.footer a:hover {
        color: #FFFFFF;
        text-decoration: none;
    } 
4

1 回答 1

1

我猜你希望那个“新”图像出现在你的一个链接的右上角。为此,您需要设置位置:相对于您的链接并定位图像绝对位置。像这样的东西:

div.footer a {
    color: #999;
}
div.footer a img {
    position: absolute;
    top: -10px;
    right: 5px;
}
  • 您可以根据需要设置顶部和右侧
于 2012-10-01T17:55:04.387 回答