如何自定义博客第一篇文章

时间:2014-02-16 15:57:12

标签: html css blogger

您好我想为我的博客http://tutxtblogspot.com的第一篇文章提供不同的CSS样式 在这里,我使用了<b:if cond='data:numPosts != 0'>
我也使用了<b:if cond='data:post.isFirstPost'>
但我没有在我的博客的第一篇文章中应用任何风格。
请帮忙

1 个答案:

答案 0 :(得分:1)

您可以使用纯CSS来定位HTML的父/子块中的不同子项。

HTML:

<div class="parent">
    <div>Blog one</div>
    <div>Blog two</div>
    <div>Blog three</div>
</div>

CSS:

.parent:first-child {
    background: red;
}

CSS只会应用于第一个孩子。