将一个div旁边的两个div(彼此叠加)对齐

时间:2013-06-04 12:23:33

标签: html5 html

我正在尝试创建一个带有左侧图像的推荐页面,然后右侧有一组堆叠的“div”。现在看起来好像他们都排成了直线块式。

以下是我的Fiddle问题。 我对HTML非常非常新,所以如果这是一个简单的解决方案我会道歉。

哦,对不起我说如果在技术上没有处理div是我的问题时调整div,但我不确定如何解释它。

这是HTML

<div class="container">
    <div class="content">
        <ul>
            <li>
                <img src="" width="200" height="200">
                <blockquote>
                    This is a testimonial, Normally there would be a quote icon in the upper left but this is just a sample.  Anyway, that's the reason for the padding.
                </blockquote>
                <cite>
                    <strong>Name</strong> | <span>Business</span>
                </cite>
            </li>
        </ul>
    </div>
</div>

和CSS

.container {
    width: 960px;
    background-color: #FFF;
    margin: 0 auto;
}
.content {
    padding: 10px 0;
}
ul {
    padding: 0 15px 15px 40px;
    list-style-type: none;
}
ul li {
    float: left;
    clear: both;
    margin-bottom: 40px;
}
img {
    float: left;
    border: 1px solid #ccc;
}
blockquote {
    background-image: url(images/icon_quote.png);
    background-repeat: no-repeat;
    margin-left: 10px;
    padding-left: 35px;
    width: 450px;
    float: left;
}
cite {
    float: left;
    margin: 5px 0 0 45px;
    list-style: none;   
}
span {
    font-weight: 400;
    color: #777 
}

2 个答案:

答案 0 :(得分:2)

只需使用一个div包装正确的内容,然后从blockquotecite中移除浮动

jsFiddle

希望这能解决您的问题。

答案 1 :(得分:1)

这是您更正后的jsFiddle。继css纠正后。

img {
    float: left;
    border: 1px solid #ccc;
    margin-right:30px;
}
blockquote {
    background-image: url(images/icon_quote.png);
    background-repeat: no-repeat;
    /*margin-left: 30px;*/
    padding-left: 35px;
    width: 450px;
    /*float: left;*/
}
cite {
    float: left;
    margin: 5px 0 0 0px;
    list-style: none;   
}