标签hover时触发befor

当我们想要实现某一个元素触发了hover是,想要给该元素设置before或after伪元素是,语法如下:

.box:hover:before {
 content: ''
}
.box:hover:after {
  content: ''
}