首页htmllast_childCSS Property Value - 如何last-child; 在分页控件中的页码之间添加管线

CSS Property Value - 如何last-child; 在分页控件中的页码之间添加管线

我们想知道如何last-child; 在分页控件中的页码之间添加管线。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
a:after, span:after {
  content: " |"
}

a:last-child:after {
  content: ""
}
</style>
</head>
<body>
  <a>Previous</a>
  <a>1</a>
  <a>2</a>
  <a>3</a>
  <span>4</span>
  <a>5</a>
  <a>6</a>
  <a>Next</a>
</body>
</html>