欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!

伪元素:用于向某些选择器设置特殊效果。

:first-letter

:first-letter:向文本的第一个字母添加特殊样式。

<p> hello first-letter </p><style>p:first-letter { color:red; font-size:30px; }</style>

:first-line

:first-line:向文本的首行添加特殊样式。

<p> hello first-line </p><style>p:first-line { color:red; font-size:30px; }

:before

:before:在元素之前添加内容。

<p> hello before </p><style>p:before { content: 'before content' }

:after

:after:在元素之后添加内容。

<p> hello after </p><style>p:after { content: 'after content' }

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/rumen/r59010.shtml