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.
我在这里搜索并找到了一个解决方案,但似乎没有回答我在寻找什么
(使用 CSS 垂直对齐嵌套的 DIV)
我的问题是,当您有 2 个 div,其中一个嵌套在另一个 div 中时,默认情况下,内部 div 将位于左上角,我如何将其放在右下角?谢谢!
添加到父级position: relative;
position: relative;
和嵌套的 div
position: absolute; right:0px bottom 0px;
.outerDiv{ position:relative; } .innerDiv{ position:absolute; bottom:0; right:0; }