HTML
<div style="width:50%;overflow:hidden">
<div id="inboxHeader">
<div id="inboxCount"><p>Earth</p></div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS
#inboxHeader{
background-color:yellow;
height :300px;
position: relative;
}
#inboxCount{
position: absolute;
bottom: 0;
float:right;
}
Run Code Online (Sandbox Code Playgroud)
Earth在bottom left角落里.那我怎么能把它转移到bottom right角落?