我正在设计来自 wordpress 插件的最近帖子和图像列表。我知道有一个 wordpress 部分,但我的问题是就如何设置此列表的样式获得一些建议。
这就是它现在的样子。
这是我的 CSS
.advanced-recent-posts {
list-style-type: none;
}
.advanced-recent-posts li {
font-size: .7em;
font-weight: bold;
line-height: 20px;
color: #761616;
margin-bottom: 10px;
text-transform: uppercase;
width: 250px;
position: relative;
top: -35px;
border: 1px solid #000;
}
.advanced-recent-posts li a {
margin-left: 10px;
}
.advanced-recent-posts li img {
position: relative;
top: 0px;
left: -10px;
padding: 5px;
border: 1px solid #999;
}
到目前为止一切顺利。但是因为图像和标题和日期都在一些
@Bonjour:这就是我要做的
.advanced-recent-posts li { display:table-row; vertical-align:top;}
(当然还有我上面的所有其他样式)
帖子标题至少是正确的。