首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >CSS和将文本放置在图像旁边

CSS和将文本放置在图像旁边
EN

Stack Overflow用户
提问于 2015-10-09 04:28:07
回答 1查看 65关注 0票数 2

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

网址示例:http://salient.peterstavrou.com/5937-2/

我有下面的图像代码:

代码语言:javascript
复制
.audiodownload {
  width: 120px !important;
  float: left;
}

我在页面中使用的WordPress和HTML是:

代码语言:javascript
复制
 <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.
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-10-09 04:36:03

在段落的样式中,您希望在图像下面使用:

代码语言:javascript
复制
p {
    clear: both;
}

指定p元素的左侧或右侧不允许浮动元素。来自clear.asp

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/33029921

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档