当我生成内容时,它不会环绕图像,如果我将其设置为静态,它将环绕
(静态的)

 | Image | text text
 | ..... | text text
 | ..... | text text
 | text  | text text

(动态)
 | Image |          |
 | ..... |          |
 | ..... |          |
 | text  | text text|
 | text  | text text|


 <div class="somediv">
  <div class="floatbox">
    <%= image_tag 'thumb_1.jpg' %>
  </div>
  <p>
    <%= @posts.first.content %>
  </p>
</div>


 .somediv{
   width: 350px;
   clear: left;
   border: 1px solid gray;
 }

.somediv .floatbox{
  float: left;
}

这是怎么回事,以及我如何克服它。

最佳答案

这个愚蠢问题的答案是,生成的内容只是一个长字符串,我猜它被解释为一个单词,并导致其溢出。

关于ruby-on-rails - 动态生成的内容不会环绕 float 图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7797713/

10-12 13:09
查看更多