2012-08-14 72 views

回答

1
<div id="container"> 

<div class="content_left"> 
    <h1>Title!</h1> 
    <h5>A subtext</h5> 
    <hr/> 
</div> 
<div class="content_right"> 
    <img src="pic.jpg"/> 
</div> 
<div> 

CSS:

#container { 
    width: yourwidth; 
    height: yourheight; 
} 

.content_right { 
    float:right; 
    width: width of image; 
} 
.content_left { 
    float:left; 
    width: width of text; 
} 

這當然只是很多方法可以做到這一點...一個