css伪元素
伪元素:用于向某些选择器设置特殊效果 :first-letter :向文本的*个字母添加特殊样式实例 <p> hello heml </p> <style> p:first-letter { color:red; font-size:30px; } </st