我在我的项目中使用了一个所见即所得的编辑器,这个编辑器的一部分包括设置图像的选项'位置向左,向右,内联。当我选择左边时,它给它左浮动特征。我想知道如何制作它,以便包含我内容的div自动扩展以允许浮动图像。
以下是我在项目中使用的部分帖子的代码
<div class="thumbnail">
<div class="text">
<%= link_to post.title, post_path(post), class: "h1" %>
<p class="pull-right"><span class="glyphicon glyphicon-time"></span> Posted on <%= post.created_at.to_formatted_s :long %></p>
<hr>
<p><%= post.content.html_safe %></p><hr>
<p>
<% post.tags.any? %>
<div class="btn-group btn-group-xs" role="group" aria-label="...">
<% post.tags.each do |tag| %>
<%= link_to tag.name, tag_path(tag), class: "btn btn-info" %>
<% end %>
</div>
</p>
</div>
</div>
答案 0 :(得分:0)
试试这个,
<div class="clearfix"></div>
答案 1 :(得分:0)
您也可以在bootstrap之外使用clearfix。只要您在CSS中定义它,就像这样:
.clearfix::after {
content: " ";
display: table;
clear: both; }
将“clearfix”类应用于它需要的任何元素,如下所示:
<div class="clearfix"></div>
它应该有用。