Add a space after ::after

if so

 .iconfont::after{
              content: ' ';
            }

Brother, you made a mistake, this does not work, I heard that it was eaten by CSS rendering.

 .iconfont::after{
              content: ' ';
              white-space: pre;
            }

Add a white-space:pre and you're done 

Guess you like

Origin blog.csdn.net/u012174809/article/details/123533167