将图片插入2列文本

时间:2014-09-07 20:45:27

标签: jquery html css

我正在编写一个包含HTML,CSS和jQuery的网站。我有一个2列样式的文本和文本之前的图片,如下所示:

   <div>
      <div style="float:right">
          <img src="imageSource"/>
      </div>    
      <div style="-webkit-column-count: 2; -moz-column-count: 2; column-count: 2;">
          TEXT
      </div>
   </div>

我希望第一列出现在图像之前,第二列出现在图片之下,如下所示:

enter image description here

我该怎么做?

1 个答案:

答案 0 :(得分:0)

像这样:

<div class="col1">text</div>
<div class="col2">
    <img src="http://placehold.it/200x100">
    <div class="col2text">text</div>
</div>

CSS:

.col1{
    float:left;
    width:200px;
    border:1px solid black;
    height:400px;
}
.col2{
    width:200px;
    border:1px solid red;
    height:400px;
    float:left;
}

http://jsfiddle.net/y8md61no/