Css 简明教程
CSS - Pseudo Elements
CSS pseudo-elements 用于设计元素中指定的部分的样式。在浏览网页时,你可能已经注意到某些段落的首字母比其余字母更大。使用 CSS 中的伪元素可对元素的特定部分进行此类设计。在本教程中,我们将解释全部的伪元素及其功能。
What is Pseudo-Element?
CSS 中的伪元素用于设计不是 DOM(文档对象模型)的一部分,且不存在于 HTML 标记中的元素的特定部分。例如,段落的首字母、输入元素中的占位符文本或文档中选中的部分。
-
伪元素用双冒号 (::) 表示法表示。
-
在一个选择器中只能使用一个伪元素。
-
选择器中的伪元素必须出现在其他全部组件之后。例如, p::last-line:hover 是无效的。
-
伪元素可用来添加装饰性样式、创建特殊效果,以及修改已应用状态的元素的特定部分的外观。例如, p:hover::last-line 是有效的语句,当鼠标经过该段落时选择该段落的最后一行
CSS Backdrop Pseudo-Element
在 CSS 中, * ::backdrop* 伪元素用于设计处于模态上下文中的元素的背景,例如当显示 * <dialog>* 元素时的背景。
Example
下面的示例演示了使用 ::backdrop 伪元素。
<!DOCTYPE html>
<html>
<head>
<style>
body{
height: 200px;
}
dialog {
padding: 20px;
border: 2px solid black;
border-radius: 10px;
}
dialog::backdrop {
/* Semi-transparent black */
background-color: rgba(0, 0, 0, 0.5);
}
</style>
</head>
<body>
<h3> Backdrop Example </h3>
<dialog id="myDialog">
<p> This is a dialog with a styled backdrop. </p>
<button id="closeButton"> Close </button>
</dialog>
<button id="openButton">Open Dialog</button>
<script>
const dialog = document.getElementById('myDialog');
const openButton = document.getElementById('openButton');
const closeButton = document.getElementById('closeButton');
openButton.addEventListener('click', () => {
dialog.showModal();
});
closeButton.addEventListener('click', () => {
dialog.close();
});
</script>
</body>
</html>
CSS First-Letter Pseudo-Element
在 CSS 中, * ::first-letter* 伪元素用于定位 * div* 、 * paragraph* 、 * span* 等任何元素文本内容的首字母
Example
下面的示例演示了 ::first-letter 伪元素的使用:
<!DOCTYPE html>
<html>
<head>
<style>
p::first-letter {
text-transform: uppercase;
font-size: 2em;
color: darkred;
font-style: italic;
}
</style>
</head>
<body>
<p>
this is a paragraph with first letter in lowercase,
we used ::first-letter pseudo-element to capitalize
first-letter of paragraph with a larger font size
and a different color.
</p>
</body>
</html>
CSS First-Line Pseudo-Element
在 CSS 中, * ::first-line* 伪元素用于定位任何元素(如 * div* 、 * paragraph* 、 * span* 等)的文本内容的第一行
Example
以下示例演示了 ::first-line 伪元素的使用:
<!DOCTYPE html>
<html>
<head>
<style>
p::first-line {
background-color: #f0f0f0;
color: darkred;
font-style: italic;
}
</style>
</head>
<body>
<p>
This is a normal paragraph with no stylings, we used
::first-line pseudo-element to only style first-line of
paragraph by adding a background color, font-style and
text color
</p>
</body>
</html>
CSS File-Selector-Button Pseudo-Element
在 CSS 中, * ::file-selector-button* 伪元素用于在现代浏览器中设计文件 * input* 元素(<input type="file">)的按钮。
Example
以下示例演示了 ::file-selector-button 伪元素的使用:
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: block;
height: 100px;
}
input::file-selector-button {
background-image:url(/css/images/border.png);
background-size: 200%;
border: 2px solid black;
border-radius: 8px;
font-weight: 600;
color: rgb(6, 1, 9);
padding: 15px;
transition: all 0.25s;
}
</style>
</head>
<body>
<h2> Select a file </h2>
<input type="file">
</body>
</html>
CSS Marker Pseudo-Element
在 CSS 中, * ::marker* 伪元素用于设计 * ordered list* 和 * unordered list* 的标记。
Example
以下示例演示了 ::marker 伪元素的使用:
<!DOCTYPE html>
<html>
<head>
<style>
ol li::marker {
color: rgb(11, 38, 241);
font-weight: bold;
}
ul li::marker {
content: url('/css/images/smiley.png')
}
</style>
</head>
<body>
<h2>Numbered list</h2>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
<h2>Bulleted list</h2>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</body>
</html>
CSS Placeholder Pseudo-Element
在 CSS 中, * ::placeholder* 伪元素用于设计文本 * input* 元素(<input type="text">)内的默认文本。
Example
以下示例演示了 ::placeholder 伪元素的使用:
<!DOCTYPE html>
<html>
<head>
<style>
.form {
border: 2px solid black;
background: lightgray;
padding: 25px;
display: flex;
flex-direction: column;
gap: 10px;
}
input{
padding: 10px;
background-color: cornsilk;
}
input::placeholder {
color: grey;
font-style: italic;
font-size: 20px;
}
</style>
</head>
<body>
<div class="form">
<h2> Your Details:</h2>
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<input type="text" placeholder="Address">
<input type="text" placeholder="Phone">
</div>
</body>
</html>
CSS Selection Pseudo-Element
在 CSS 中, * ::selection* 伪元素用于设计任何元素(如 * div* 、 * paragraph* 、 * span* 等)内用户选择的文本
Multiple Pseudo-elements
我们还可以在一个选择器中添加多个伪元素,查看示例。
Example
以下示例演示了多个伪元素(::first-line 和 ::first-letter)的使用。
<!DOCTYPE html>
<html>
<head>
<style>
p::first-line {
text-decoration: underline;
}
p::first-letter {
text-transform: uppercase;
font-size: 2em;
color: red;
}
</style>
</head>
<body>
<p>
the first line of this paragraph will be underlined and
first letter is uppercase, 2em and red in color, as the
pseudo-element ::first-line & ::first-letter is applied
on p. The other lines are not underlined.
</p>
</body>
</html>
All CSS Pseudo-Elements
下表显示了 CSS 中的所有伪元素:
Pseudo-element |
Description |
Example |
添加了一个伪元素,它是所选元素的最后一个子元素。 |
||
用于设计元素(如对话框)的背景。 |
||
添加了一个伪元素,它是所选元素的第一个子元素。 |
||
用于设计具有视频文本轨道的媒体中的字幕和提示。 |
||
对块级元素第一行的第一个字母应用样式。 |
||
对块级元素的第一行应用样式。 |
||
代表一个 <input> 的按钮类型为“file”。 |
||
选中列表项的标记框。 |
||
表示阴影树中具有匹配部分属性的元素。 |
||
表示 <input> 或 <textarea> 元素中的占位符文本。 |
||
将样式应用于文档的选定部分(单击并拖动鼠标跨文本内容选中)。 |
||
表示已通过 HTML 模板放入槽中的元素。 |
||
::grammar-error |
用于设置浏览器内置语法检查工具识别出的语法错误文本样式。 |
|
::spelling-error |
用于设置浏览器内置拼写检查工具识别出的错误拼写文本样式。 |