How to display text outside of the box of <div></div>
- by Steven
<div class="signup">
<div>Tenxian ???????????</div><br/>
</div>
<br/><br/><br/><br/><br/><br/>
<div align="center">@2009 Tenxian ????
</div><br/>
<div align="center"><a href="/en/bidding/index.php">Tenxian·English</a> <a href="/cn/bid/index.php">??·??</a></div><br/><br/>
.signup {
border: 1px solid #99CCFF;
position: absolute;
width: 700px;
height:450px;
left: 50px;
right: auto;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
The problem is that
@2009 Tenxian ????
Tenxian·English ??·??
is displayed in the box of <div class="signup"></div>, how to display it out of the box of <div class="signup"></div>?
I want to display
@2009 Tenxian ????
Tenxian·English ??·??
at the bottom of a web page and outside of the box of <div class="signup"></div> . How to do it?