JQuery可调整大小和可拖动的div定位问题
我无法在较大的 div 中正确定位某些 div 并让它们按照我想要的方式运行。
源代码和预览在这里:http://jsbin.com/usuniw/6/edit
问题 1
当隐藏的 div 取消隐藏时,它会出现在 div 下方,我希望它出现在内部。一旦调整了内部 div 的大小(使用左侧的手柄),它就会弹出到位
问题 2
当调整最初隐藏的 div 的大小时,它会移动到其父级的边界之外,而不是向右对齐-它的手边。
感谢您提供的任何帮助。
I'm having trouble properly positioning some divs within a larger div and having them behave as I want.
The source and a preview is here: http://jsbin.com/usuniw/6/edit
Problem 1
When the hidden div is unhidden it appears under the div I want it to appear inside. Once the dive inside is resized (using a handle on the left hand side) it pops into place
Problem 2
When resizing the originally hidden div it moves outside the boundry of it's parent rather than aligning itself to the right-hand side of it.
Thanks for any help you can give.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,您已将
#selectedResult
元素设置为向右浮动,这导致它出现在#ipad
元素下方。如果您去掉
#selectedResult
上的float:right
并将其设置为:并且设置
#ipad
element to:然后该元素将被固定到其父元素的顶部和右侧。
您可以在此处查看示例的更新版本: http://jsbin.com/uxavov/edit#preview< /a>
At the moment, you have the
#selectedResult
element set as float right which is causing it to appear underneath the#ipad
element.If you get rid of the
float:right
on#selectedResult
and instead set it to:And set the
#ipad
element to:Then the element will be fixed to the top and right sides of its parent.
You can see an updated version of your example here: http://jsbin.com/uxavov/edit#preview