CSS和在图像旁边放置文本

CSS和在图像旁边放置文本,css,image,text,alignment,Css,Image,Text,Alignment,我有一些文本和图像,我想把文本放在图像的右侧。 我已经使图像向右浮动,但问题是,我只想将第2行放在图像旁边。 我希望文本的其余部分保持在图像下,就像关闭float时一样 URL示例: 我有以下图像代码: .audiodownload { width: 120px !important; float: left; } 我在页面中使用WordPress和HTML是: <h2>Good Audiobook</span></h2> Click on

我有一些文本和图像,我想把文本放在图像的右侧。 我已经使图像向右浮动,但问题是,我只想将第2行放在图像旁边。 我希望文本的其余部分保持在图像下,就像关闭float时一样

URL示例:

我有以下图像代码:

.audiodownload {
  width: 120px !important;
  float: left;
}
我在页面中使用WordPress和HTML是:

 <h2>Good Audiobook</span></h2>

  Click on the image below to see if the Audiobook is available.
 <a href="https://www.youtube.com/results?search_query=The+7+Habits+of+Highly+Effective+People+audiobook" target="_blank"><img class="audiodownload" src="http://www.peterstavrou.com/wp-content/uploads/2015/10/YouTube-MP3-Audio.jpg" alt="Audiobook Download" /></a>
 If the Audiobook is available then you can download it to your computer as an .mp3 audio file by following these instructions
&nbsp;

The 7 Habits of Highly Effective People is recognized as one of the most influential audiobooks ever recorded. In this Audiobook Stephen R. Covey presents a holistic, integrated, principle-centered approach for solving personal and professional problems. 
With penetrating insights and pointed anecdotes, Stephen Covey reveals a step-by-step pathway for living with fairness, integrity, honesty and human dignity - principles that give us the security to adapt to change, and the wisdom and power to take advantage of the opportunities that change creates.
好的有声读物
点击下图查看有声读物是否可用。
如果有此有声读物,您可以按照以下说明将其作为.mp3音频文件下载到您的计算机
《高效能人士的7个习惯》被公认为有史以来最具影响力的有声读物之一。在这本有声读物中,Stephen R.Covey提出了一种解决个人和专业问题的整体、综合、以原则为中心的方法。
斯蒂芬·科维(Stephen Covey)以敏锐的洞察力和尖锐的轶事揭示了一条循序渐进的道路,让我们在公平、正直、诚实和人的尊严中生活——这些原则让我们有安全感来适应变化,并让我们有智慧和力量来利用变化创造的机会。

在图像下方的段落样式中使用:

p {
    clear: both;
}

指定p元素的左侧或右侧不允许浮动元素。从

可以向我们展示您的html吗?