0

你怎么能把导航和二十二中的标题图片放在同一行?现在导航菜单在图像上方,但我希望它们彼此相邻。有什么办法可以做到这一点?谢谢!

4

1 回答 1

2

将“位置:相对”添加到#masthead:

#masthead {position: relative;}

然后用绝对位置定位您的导航:

#site-navigation {
    position: absolute;
    bottom: 0; /* or top, if you prefer */
    right: 0;
}
于 2012-11-02T16:30:34.140 回答