我在工作期间多次遇到过这个问题,但我从未理解为什么会发生这种情况或如何解决它。
<p id="skeeter">Even John Skeet cannot parse HTML with Regex</p>
#skeeter { text-decoration: underline; color: blue;}
#skeeter:after { content: "\00bb"; margin-left: 5px; text-decoration: none;}
上面有raquo强调,当我打算不这样做时。
答案 0 :(得分:4)
this。仅将display: inline-block
添加到:after
代码
#skeeter { text-decoration: underline; color: blue;}
#skeeter:after { content: "\00bb"; margin-left: 5px; text-decoration: none; display:inline-block;}