我想将第一个 div 定位到父 div 的左上角,将第二个 div 定位到父 div 的右下角。这是我的代码!
<div class="parent">
<div class="tl">TopLeft</div>
<div class="br">BottomRight</div>
</div>
这是我的CSS,
.parent
{
width: auto;
height:300px;
background: Black;
}
.tl
{
width:100px;
height:40px;
background:Aqua;
}
.br
{
position:absolute;
width:100px;
height:40px;
right:0;
bottom:0;
background:Aqua;
}
根据我的代码,左上角的 div 位置正确,但右下角的 div 在父 div 之外。想知道我的代码需要什么!
这是小提琴!