2010-06-11 18 views
2

在jquery手风琴控制中我正在显示一张图片以及description.but描述正在image.I下方显示。 我的代码 -如何在html中包装文字?

<div> 
    <p> 
    <!-- avatar --> 
    <img src="images/manage.jpg" alt="" /> 
    <!-- /avatar --> 
     Airlink's Managed Services supports a "build-operate-transfer" model, enabling service providers to quickly and cost-effectively build out a large-scale, broadband wireless network by initially outsourcing operational functions to Pronto and eventually transferring operations in-house, if desired. 
</br></p> 
     As part of the service, Airlink provides all the back-office operations for customers from its Network Operations Center (NOC), leveraging its leading UniFi OSS platform.</p> 
    <p> 
     <a href = "#" >Read More.. </a> 
    </p> 
</div> 
+2

你真的应该通过验证器来运行该代码。 – Quentin 2010-06-11 11:25:29

回答

0
<img src="images/manage.jpg" alt="" style="float:left;" /> 

而且我认为,你应该将图像出来<p>

代替</br>使用<br />

-1

二的方式来做到这一点:

<img src="images/manage.jpg" alt="" align="left" /> 
+2

不赞成,1998年的风格。应该避免。 – 2010-06-11 11:28:22