如何使用 jQuery 为附加元素指定位置
我附加的元素非常混乱并且遍布各处。 当您在一个框中添加某些内容时,其他框会移动。
我问你的问题是; 我如何为我要附加的元素提供某种结构。 也许采用某种瓷砖策略?
我想要正好 4 个彼此相邻的盒子,第五个盒子在它下面,这样你就可以创建 4 行。 但我不知道如何做到这一点,如果这里有很多工作
my appended elements are very messy and all over the place.
When you append something in one box, the other ones move.
My question to you is;
How can i give some kind of structure to the elements i'm appending.
Maybe with some sort of tile strategy?
i want exactly 4 boxes next to each other and the fifth beneath it so you create rows of 4.
but i dont know how to do this and if its a lot of work
here is my code: http://www.jsfiddle.net/Es3R9/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将容器的宽度更改为
800px
并将float: left;
添加到.redbox
。就是这样。Change the width of your container to
800px
and addfloat: left;
to.redbox
. That's it.