<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>伪元素选择器</title>
<style>
/* 伪类选择器中Content不可或缺 */
p::before {
content: "Hello";
}
p::after {
content: "World!";
}
</style>
</head>
<body>
<p> </p>
</body>
</html>
CSS之伪元素选择器
最新推荐文章于 2025-12-27 19:25:02 发布
1398

被折叠的 条评论
为什么被折叠?



