Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法找到将 div 放置在容器底部的方法。
我尝试了什么:
position:absolute; bottom:10px;
但它在底部显示我需要的 div,在我需要它的容器之外......
我感谢在这方面的任何帮助。
下面是显示示例的 jsfiddle:
http://jsfiddle.net/Gd6JC/
将容器设置为position: relative并确保<div>您尝试定位在容器底部的 嵌套在容器内。
position: relative
<div>
http://jsfiddle.net/Wexcode/RdjS3/
您需要做的就是将规则添加position: relative到包含的 div 中。
http://jsfiddle.net/saluce/Gd6JC/1/