Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你怎么能把导航和二十二中的标题图片放在同一行?现在导航菜单在图像上方,但我希望它们彼此相邻。有什么办法可以做到这一点?谢谢!
将“位置:相对”添加到#masthead:
#masthead {position: relative;}
然后用绝对位置定位您的导航:
#site-navigation { position: absolute; bottom: 0; /* or top, if you prefer */ right: 0; }