我正在尝试创建一个带有左侧图像的推荐页面,然后在右侧有一组堆叠的“div”。现在看起来好像它们都被排列成内联块样式。
这是我的问题的小提琴。我对 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
}