How to display text outside of the box of <div></div>
Posted
by Steven
on Stack Overflow
See other posts from Stack Overflow
or by Steven
Published on 2010-03-17T03:35:40Z
Indexed on
2010/03/17
3:41 UTC
Read the original article
Hit count: 450
<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?
© Stack Overflow or respective owner