p:first-letter 什么意思
发布网友
发布时间:2022-04-06 12:51
我来回答
共1个回答
热心网友
时间:2022-04-06 14:20
CSS :first-letter 选择器
选择每个 <p> 元素的首字母,并为其设置样式:
<!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>
浏览器效果: