12 列网格中的 CSS 样式

发布于 2024-10-21 10:26:43 字数 315 浏览 2 评论 0原文

大家好,我在我正在处理的网站上需要一些帮助。我正在尝试移动这两个图像,使它们并排位于导航菜单的右侧,例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

维持三分热 2024-10-28 10:26:43

如果你去掉 div #featured 的图像并添加

#featured {
    width:100px;
    float:left;  
}

?

if you take off your images of the div #featured and add

#featured {
    width:100px;
    float:left;  
}

?

以可爱出名 2024-10-28 10:26:43

你的主要问题是 nav 有一个 padding-right:800px;这意味着导航 div 内没有空间容纳它们。

设置

header nav { padding-right:0px; } 

为所需的结果。

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

header nav { padding-right:0px; } 

for the desired result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文