我正在整理一些 Wordpress 网页,我想(用CSS
)样式化页面中的条目卷Posts
。Wordpress 创建了这个:
<div class="entry">
页面中有大量这些元素,为了将它们分开,我在条目底部使用了边框。问题是我不希望在最后一个条目上有这个边框。可以在 CSS 中完成类似的操作吗?(请注意,它不是一个列表,所以我不能使用伪类)
这是我的 CSS,非常简单:
.entry{ border-bottom: 1px solid yellow; }
HTML:
<div id="wrapper">
<br />
there are loads of code
<br />
<div class="entry">bunch of code there</div>
<br />
<div class="entry">bunch of code there</div>
<br />
<div class="entry">bunch of code there</div>
<br />
another huge code
<br />
</div>
在此先感谢您的帮助。