将 div 放置在彼此旁边
我正在尝试创建一个非常简单的 jQuery 滑块;然而,首先,我想将我的 div 放置在彼此旁边而不是在彼此下方,这样我就可以为 'left:' css 值设置动画。我很愚蠢,而且在这方面完全失败了。我不明白。
这是我正在使用的代码示例:
我不明白为什么他们呆在彼此下面而不是挨着彼此。 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您在 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 :-)您是否尝试过
float: left;
。更改以下内容:Have you tried
float: left;
. Change the following:您需要浮动 div。像这样的东西:
You need to float the divs. Something like: