对于最后一个元素,一般情况下,我们都要单独处理。

如:

<style>.test span{

display: block;
border-bottom: 2px solid #e5e5e5;
line-height:1.5;
}
.test span:last-ot-type{
border-bottom: 0;
}

</style>

<div class="test">
<span>这里是第一个</span>
<span>这里是第二个</span>
<span>这里是第三个</span>
</div>

这段代码的目的是让最后一个span不存在底部border,我以前也是这样处理。但现在是:not(:last-of-type)  show time~

<style>.test span:not(:last-of-type){

display: block;
border-bottom: 2px solid #e5e5e5;
line-height:1.5;
}</style>

css小技巧---:not()

只需要这样写就可以了。节省很多时间~~~

相关文章:

  • 2022-01-08
  • 2021-11-23
  • 2021-11-09
  • 2021-09-05
  • 2022-02-03
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-01
  • 2021-10-11
  • 2022-12-23
  • 2022-03-03
  • 2021-08-12
相关资源
相似解决方案