当 jQuery 扩展宽度时,将同级 div 右对齐
http://jsfiddle.net/imHavoc/b8Ktj/10/
问题是当一个div的宽度扩展,边界 div 也扩展,所有同级元素都“左对齐”。我不知道如何在一个 div 的宽度扩展时保持同级 div 向右对齐。
http://jsfiddle.net/imHavoc/b8Ktj/10/
The problem is when one div's width expands so does the bounding div, which all the siblings are "left aligned" to. I cannot figure out how to keep the sibling divs aligned to the right while one div's width expands.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
float: right
和clear: right
添加到div.navScroll
。您在我回答后制作的演示: http://jsfiddle.net/imHavoc/b8Ktj/11/
Add
float: right
andclear: right
todiv.navScroll
.The demo you made after my answer: http://jsfiddle.net/imHavoc/b8Ktj/11/