如何在html中包装文本?

时间:2010-06-11 11:05:35

标签: jquery html

在jquery手风琴控件中我正在显示一个图像以及description.but描述在图像下面。我想显示内嵌图像。 我的代码 -

<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 个答案:

答案 0 :(得分:0)

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

我认为,您应该将图片移出<p>

而不是</br>使用<br />

答案 1 :(得分:-1)

第二种方法:

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