伪元素制作自定义边框

在这里插入图片描述
红框圈出来的蓝色下边框这种效果


	我的赞


	我的收藏


	我的评论


	我的关注

.active{
  /*要给active一个相对定位  然后给伪元素绝对定位 这样伪元素才能根据active来定位*/
  position: relative;
}
.active:after {
  /*content 可为空 必须写这句*/
  content: '';
  /*设置margin: 0 auto; 加上相对定位的left和right都为零 可让伪元素在active中水平居中*/
  margin: 0 auto;
  position: absolute;
  bottom: -14rpx;
  left: 0;
  right: 0;
  height: 3px;
  width: 22px;
  background-color: #2e84ed;
}

你可能感兴趣的:(伪元素制作自定义边框)