33

我想实现以下位置:

两个不同的文本(块中)在图像旁边浮动/内联。(div内的所有内容)。

我一直在尝试使用不同的显示设置(文本的块 + 内联等),但它仍然无法正常工作。

在此处输入图像描述

HTML:

<div class="res">
<img src="<?php echo 'img/'.$row["sType"].'.png';?>"/>
<span>TITLEe</span>
<span>Description</span>
</div>  

CSS:

.res {

    height:60px;
    background-color:yellow;
    border-bottom:1px solid black;
    text-align:left;

}

.res img {

    margin-top:8.5px;
    margin-left:5px;
    display:inline
}

.res span {

    display:block;
}
4

5 回答 5

63
于 2012-08-07T12:04:27.607 回答
3

Hi why used to float left you can do this without used float as like this

<div class="res">
<img src="<?php echo 'img/'.$row["sType"].'.png';?>"/>
<div class="text"><h5>TITLEe</h5>
  <p>Description</p></div>
</div>  

Css

    .res {
    height:60px;
    background-color:yellow;
    border-bottom:1px solid black;
}
img, .text{
vertical-align:top;
}
.text{
display:inline-block;
}
p, h5{
margin:0;
  padding:0;
}

and change to css, class according to your design

于 2012-08-07T12:10:11.570 回答
2

好吧,您可以尝试使用表格的经典方式,尽管不建议使用表格进行布局

<table>
  <tr>
    <th><img src="yourimage" /> </th>
    <th >adsasd<br/>adas</th>
  </tr>
</table>
于 2012-08-07T12:04:12.447 回答
1

试试这个.....应该可以

html:

<div id="testDiv">
    <div class="imgContainer"><img src="path/image.jpg" /></div>
    <div class="textContainer"></div>
</div>

CSS:

#testDiv { float:left; width: 360px; }
#testDiv .imgContainer { float:left; width:120px; height:90px; }
#testDiv .textContainer { float:left; width:240px; height:90px; overflow:hidden }
于 2012-08-07T12:00:20.070 回答
0

我认为您需要以下内容:

HTML:

<div class="wrap">
  <img src="img.jpg" class='left;' />
  <h1 class='right'>TITLE</h1>
  <div class='right'>Element description</div>
</div>

CSS:

.wrap { width: 600px; /* Just a sample value */ }
.left { width: 200px; float: left; }
.right { margin-left: 220px; width: 380px;}

这应该够了吧。根据您的需要调整宽度和边距参数。

于 2012-08-07T12:01:28.950 回答