向右浮动文本而不是图像
我正在尝试将图像推回标题下方的左侧。仅将描述文本浮动到右侧。我似乎无法清除图像浮动。
HTML:
<div class="title">System Displays</div>
<div class="description">Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.
<img src="http://dummyimage.com/400x200/000/fff" />
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. </div>
CSS:
.title {
width: 200px;
float: left;
}
.description{
width: 200px;
float: right;
}
.description img {
float: left;
clear: both;
}
jsfiddle 更清晰。我无法插入任何额外的 HTML。感谢您的任何建议。
编辑:这个 [jsfiddle] 是我视觉上想要实现的目标。我不确定 position:relative;
是否合适。
I'm trying to the push the images back to the left under the title. Only floating the description text to the right. I can't seem to clear the image floats.
HTML:
<div class="title">System Displays</div>
<div class="description">Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.
<img src="http://dummyimage.com/400x200/000/fff" />
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. </div>
CSS:
.title {
width: 200px;
float: left;
}
.description{
width: 200px;
float: right;
}
.description img {
float: left;
clear: both;
}
The jsfiddle is clearer. I can't insert any extra HTML. Thanks for any advice.
EDIT: And this [jsfiddle] is what I visually want to achieve. I'm not sure if position: relative;
is appropriate though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 jsfiddle 与示例代码有很大不同。这是修复后的 jsfiddle 演示。
如果您需要
.description
具有固定宽度,则您将需要另一个解决方案。你不能将任何东西漂浮在其容器之外。这是使用绝对定位的另一种方法的示例。
演示
这是使用
相对
定位的另一种方法:演示
Your jsfiddle differs greatly from your example code. Here is the fixed jsfiddle demo.
If you need
.description
to have a fixed width, you are going to need another solution. You can't float something outside of its container box.Here is an example of another method using
absolute
positioning.Demo
Here is another method using
relative
positioning:Demo