请老师帮忙检查代码
来源:3-33 编程练习
cloudonthesun
2021-05-14 20:41:14
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css3选择器</title>
<style>
/*补充代码*/
p::after {
content: "(备注)";
color: red;
font-size: 13px;
}
</style>
</head>
<body>
<!-- 补充代码 -->
<p>这是一段文字</p>
</body>
</html>
1回答
相似问题