伪类和伪元素选择器
Posted xtxdm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了伪类和伪元素选择器相关的知识,希望对你有一定的参考价值。
.link:hover{
color: yellow;
font-weight: bold;
/*倾斜*/
font-style: italic;
}
/*before和after加的东西不能被选中*/
.box1:before{
content: ".";
color: red;
}
.box2:after{
content: "。";
color: blue;
}
以上是关于伪类和伪元素选择器的主要内容,如果未能解决你的问题,请参考以下文章