12 列网格中的 CSS 样式
大家好,我在我正在处理的网站上需要一些帮助。我正在尝试移动这两个图像,使它们并排位于导航菜单的右侧,例如 this 。我尝试在负责图片和菜单所在列表的 div 上使用浮动,但无济于事。我在 960 网格系统中使用 12 列。此 (http://pastebin.com/nfrctRhS) 是该页面的 CSS 代码。我真的很感谢你们能提供的任何帮助,因为我已经被这个问题困扰了很长一段时间。谢谢!
Hey guys, I need a little help on the site I'm working on . I'm trying to move the two images so they are side by side to the right of the navigation menu, like this. I've tried using floats on the divs responsible for the pictures and the list where the menu resides, but to no avail. Im using a 12 column in 960 grid system. This (http://pastebin.com/nfrctRhS) is the CSS code for the page. I really appreciate any help you guys can offer, as I've been stuck on this problem for quite a while. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你去掉 div #featured 的图像并添加
?
if you take off your images of the div #featured and add
?
你的主要问题是 nav 有一个 padding-right:800px;这意味着导航 div 内没有空间容纳它们。
设置
为所需的结果。
Your main problem is nav has a padding-right:800px; This means there is not room within the nav div for them to fit.
set
for the desired result.