嗨,我打算制作一个 div 放在另一个 div 的右上角
.another
{
position:fixed;
padding:09px;
margin:auto;
left:25%;
width:auto;
height:auto;
background:#ffffff;
z-index:999999;
}
.topcorner
{
float:right;
position:fixed;
left:25%;
z-index:99999999;
}
这是我的html
<div class="another">
<div class="topcorner">
i am at top right corner
</div>
here is some other content
</div>
如何使topcorner div 将其放置在右上角