CSS :first-letter 选择器 详解
css3基础 2023-07-22 16:40:32小码哥的IT人生shichen
CSS :first-letter 选择器
实例
选择每个 <p> 元素的首字母,并为其设置样式:
p:first-letter { font-size:200%; color:#8A2BE2; }
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
p:first-letter
{
font-size:200%;
color:#8A2BE2;
}
</style>
</head>
<body>
<h1>Welcome to My Homepage</h1>
<p>My name is Donald.</p>
<p>I live in Duckburg.</p>
<p>My best friend is Mickey.</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
:first-letter | 1.0 | 9.0 | 1.0 | 1.0 | 7.0 |
定义和用法
:first-letter 选择器用于选取指定选择器的首字母。
注释:以下属性可与 :first-letter 使用:
- 字体属性
- 颜色属性
- 背景属性
- 外边距属性
- 内边距属性
- 边框属性
- text-decoration
- vertical-align(只有在 float 为 'none' 时)
- text-transform
- line-height
- float
- clear
相关页面
CSS 教程:CSS 伪元素