将 div 放置在彼此旁边

发布于 2024-11-08 17:03:42 字数 326 浏览 0 评论 0原文

我正在尝试创建一个非常简单的 jQuery 滑块;然而,首先,我想将我的 div 放置在彼此旁边而不是在彼此下方,这样我就可以为 'left:' css 值设置动画。我很愚蠢,而且在这方面完全失败了。我不明白。

这是我正在使用的代码示例:

http://jsfiddle.net/YUQWx/1/

我不明白为什么他们呆在彼此下面而不是挨着彼此。 left: 似乎被忽略了?我可能在这里错过了一些东西。

提前致谢。

I'm trying to create a very simple jQuery slider; however, to get started, I wanted to position my divs next to eachother instead of underneath eachother so I could animate the 'left:' css value. I'm dumb and completely failing at this though. I don't get it.

Here's an example of the code I'm playing with:

http://jsfiddle.net/YUQWx/1/

I don't understand why they stay below eachother instead of going next to eachother. The left: seems to be getting ignored? I'm probably missing out on something here.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

无边思念无边月 2024-11-15 17:03:42

您在 CSS 中拼写 .scrolling-content 时带有破折号,但带有下划线 (

)在 HTML 中。纠正拼写,你就会没事的:-)

You're spelling .scrolling-content with a dash in the CSS, but with an underscore (<div id="zone_a" class="scrolling_content">) in the HTML. Fix the spelling, and you'll be fine :-)

思慕 2024-11-15 17:03:42

您是否尝试过float: left;。更改以下内容:

#scrollzone
{
    width: 700px;
    height: 200px;
    position: relative;
    float: left;    
}

#zone_a, #zone_b, #zone_c
{
    width: 300px;
    float: left;
    height: 200px;    
    top: 0px;
}

Have you tried float: left;. Change the following:

#scrollzone
{
    width: 700px;
    height: 200px;
    position: relative;
    float: left;    
}

#zone_a, #zone_b, #zone_c
{
    width: 300px;
    float: left;
    height: 200px;    
    top: 0px;
}
冷默言语 2024-11-15 17:03:42

您需要浮动 div。像这样的东西:

#div1 { 
    float: left;
    width: 200px;
}

#div2{ 
    float:left;
    width:200px;
}

You need to float the divs. Something like:

#div1 { 
    float: left;
    width: 200px;
}

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