16

在此处输入图像描述

我正在尝试将 [如图所示]、facebook 图标和文本并排放置。我无法清楚地理解这一点。

我尝试过的代码

CSS

 .iconDetails {
 margin-left:2%;
float:left; 
height:40px;
width:40px; 
} 

.container2 {
    width:100%;
    height:auto;
    padding:1%;
}

HTML

<div class='container2'>
        <div>
            <img src='http://ecx.images-amazon.com/images/I/21-leKb-zsL._SL500_AA300_.png' class='iconDetails'>
        </div>  
    <div style='margin-left:60px;'>
    <h4>Facebook</h4>
    <div style="font-size:.6em">fine location, GPS, coarse location</div>
    <div style="float:right;font-size:.6em">0 mins ago</div>
    </div>
</div>

我的JSFiddle

4

6 回答 6

23

你的 h4 上有一些疯狂的边距,所以删除它

h4 {
    margin:0px;
}

http://jsfiddle.net/qMdfC/2/

编辑:

http://jsfiddle.net/qMdfC/6/

对于 0 分钟文本,在第一个 div 左侧添加了一个浮点数,但我个人只是将它们组合起来,尽管您可能有理由不这样做。

于 2013-09-02T07:29:55.417 回答
5

你已经做对了,只是<h4>Facebook</h4>标签占用了太多的垂直边距。您可以使用标签margin:0px上的样式将其删除。<h4>

为了您以后的方便,您可以在元素上放置边框 ( border:1px solid black) 以查看您实际上弄错了哪一部分。

于 2013-09-02T07:30:22.483 回答
2

使用以下代码:jsfiddle.net/KqHEC/

HTML

<div class='container2'>
        <div class="left">
            <img src='http://ecx.images-amazon.com/images/I/21-leKb-zsL._SL500_AA300_.png' class='iconDetails'>
        </div>  
    <div   class="right" >
    <h4>Facebook</h4>
    <div style="font-size:.7em;width:160px;float:left;">fine location, GPS, coarse location</div>
    <div style="float:right;font-size:.7em">0 mins ago</div>
    </div>
</div>

CSS

.iconDetails {
 margin-left:2%;
float:left; 
height:40px;
width:40px; 
} 

.container2 {
    width:270px;
    height:auto;
    padding:1%;
    float:left;
}
h4{margin:0}
.left {float:left;width:45px;}
.right {float:left;margin:0 0 0 5px;width:215px;}

http://jsfiddle.net/KqHEC/1/

于 2013-09-02T07:42:13.487 回答
1

删除 h4 标签的边距

h4 {
margin:0px;
}

小提琴链接

http://jsfiddle.net/Vinay199129/s3Qye/

于 2013-09-02T07:30:57.580 回答
1

总是值得将元素分组到相关的部分中。在您的情况下,包含两列的父元素;

  1. 图标
  2. 文本。

http://jsfiddle.net/qMdfC/10/

HTML:

<div class='container2'>
    <img src='http://ecx.images-amazon.com/images/I/21-leKb-zsL._SL500_AA300_.png' class='iconDetails' />

    <div class="text">
        <h4>Facebook</h4>
        <p>
            fine location, GPS, coarse location
            <span>0 mins ago</span>
        </p>
    </div>
</div>

CSS:

* {
    padding:0;
    margin:0;
}
.iconDetails {
    margin:0 2%;
    float:left;
    height:40px;
    width:40px;
}
.container2 {
    width:100%;
    height:auto;
    padding:1%;
}
.text {
    float:left;
}
.text h4, .text p {
    width:100%;
    float:left;
    font-size:0.6em;
}
.text p span {
    color:#666;
}
于 2013-09-02T07:40:50.610 回答
0

HTML

<div class='containerBox'>
    <div>
       <img src='http://ecx.images-amazon.com/images/I/21-leKb-zsL._SL500_AA300_.png' class='iconDetails'>
       <div>
       <h4>Facebook</h4>  
       <div style="font-size:.6em;float:left; margin-left:5px;color:white;">fine location, GPS, coarse location</div>
       <div style="float:right;font-size:.6em; margin-right:5px; color:white;">0 mins ago</div>
       </div>
   </div> 
</div>

CSS

 .iconDetails {
 margin-left:2%;
 float:left; 
 height:40px;
 width:40px;
 } 

.containerBox {
width:300px;
height:60px;
padding:1px;
background-color:#303030;
}
h4{
margin:0px;
margin-top:3%;
margin-left:50px;
color:white;
}
于 2013-09-02T08:15:50.343 回答