- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - 伪元素
CSS 伪元素用于设置元素的指定部分的样式。在浏览网页时,您可能已经注意到某些段落的第一个字母比其他字母大。这种针对元素特定部分的样式是使用 CSS 中的伪元素完成的。在本教程中,我们将解释所有伪元素及其功能。
什么是伪元素?
CSS 中的伪元素用于设置元素的特定部分的样式,这些元素不是 DOM(文档对象模型)的一部分,也不存在于 HTML 标记中。例如,段落的第一个字母、输入元素内的占位符文本或文档中的选定部分。
- 伪元素用双冒号 (::) 表示法表示。
- 选择器中只能使用一个伪元素。
- 选择器中的伪元素必须出现在所有其他组件之后。例如,p::last-line:hover 无效。
- 伪元素可用于添加装饰样式、创建特殊效果以及修改已应用状态的元素的某些部分的外观。例如,p:hover::last-line 是一个有效的语句,当段落悬停时,它会选择段落的最后一行
语法
selector::pseudo-element {
property: value;
}
浏览器支持四个原始伪元素的单冒号语法,即 ::before、::after、::first-line 和 ::first-letter。
内容插入伪元素
在 CSS 中,伪元素 ::before 和 ::after 用于在任何元素之前和之后插入文本内容或图像。
例此示例演示如何使用 CSS 在段落的开头和结尾插入文本和图像。
<!DOCTYPE html>
<html>
<head>
<style>
p:before {
content: "NOTE:";
font-weight: bold;
}
p:after {
content: url(/css/images/smiley.png);
}
</style>
</head>
<body>
<p>
我们在开头插入了介绍,在结尾插入了表情符号。
</p>
</body>
</html>
CSS 背景伪元素
在 CSS 中,伪元素 ::backdrop 用于设置模态上下文中元素的背景样式,例如显示 <dialog> 元素后面的背景。
例
以下示例演示了伪元素 ::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>这是一个有风格背景的对话。</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 ::cue 伪元素
在 CSS 中,伪元素 ::cue 与 Web 视频文本轨道一起使用,为 <video> 和 <audio> 等媒体元素设置文本轨道的特定部分(如字幕或字幕)的样式。
例以下示例演示了伪元素 ::cue 的用法:
<!DOCTYPE html>
<html>
<head>
<style>
video {
width: 100%;
}
video::cue {
font-size: 1rem;
color: peachpuff;
}
</style>
</head>
<body>
<video controls src="/css/foo.mp4">
<track default kind="captions"
srclang="en" src="/css/cue-sample.vtt" />
</video>
</body>
</html>
CSS 首字母伪元素
在 CSS 中,伪元素 ::first letter 用于定位任何元素(如 div、 段落、span 等)的文本内容的第一个字母
例以下示例演示了伪元素 ::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 第一行伪元素
在 CSS 中,伪元素 ::first-line 用于针对任何元素(如 div、 段落、span 等)的第一行文本内容
例以下示例演示了伪元素 ::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 文件-选择器-按钮伪元素
在 CSS 中,伪元素 ::file-selector-button 用于在现代浏览器中设置文件 <input> 元素 (<input type=“file”>) 的按钮样式。
例以下示例演示了伪元素 ::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 标记伪元素
在 CSS 中,伪元素 ::marker 用于设置 有序列表 和 无序列表 的标记样式。
例以下示例演示了伪元素 ::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 占位符伪元素
在 CSS 中,伪元素 ::placeholder 用于设置文本 <input> 元素 (<input type=“text”>) 内的默认文本的样式。
例以下示例演示了伪元素 ::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 选择伪元素
在 CSS 中,伪元素 ::selection 用于在任何元素(如 <div>、 <p>、<span> 等)中为用户选择的文本设置样式
例以下示例演示了伪元素 ::selection 的用法:
<!DOCTYPE html>
<html>
<head>
<style>
.highlight::selection {
color: yellow;
background: brown;
}
</style>
</head>
<body>
<p class="highlight">
Select Me!!! to see the effect.
</p>
<p> No style applied to me. </p>
</body>
</html>
多个伪元素
我们还可以将多个伪元素添加到选择器中,请查看示例。
例以下示例演示了多个伪元素( ::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>
所有 CSS 伪元素
下表显示了 CSS 中的所有伪元素:
伪元素 | 描述 |
---|---|
::after | 添加一个伪元素,该伪元素是所选元素的最后一个子元素。 |
::backdrop | 用于设置对话框等元素的背景样式。 |
::before | 添加一个伪元素,该伪元素是所选元素的第一个子元素。 |
::cue | 用于设置带有视频文本轨道的媒体中的字幕和提示的样式。 |
::first-letter | 将样式应用于块级别元素的第一行的第一个字母。 |
::first-line | 将样式应用于块级别元素的第一行。 |
::file-selector-button | 表示 type=“file” 的<input>的按钮。 |
::marker | 选择列表项的标记框。 |
::part() | 表示阴影树中具有匹配部件属性的元素。 |
::placeholder | 表示 <input> 或 <textarea> 元素中的占位符文本。 |
::selection | 将样式应用于文档的选定部分(通过在文本上单击并拖动鼠标来选择)。 |
::slotted() | 表示已放置在 HTML 模板内的插槽中的元素。 |
::grammar-error | 用于设置被浏览器的内置语法检查工具识别为语法错误的文本的样式。 |
::spelling-error | 用于设置已被浏览器的内置拼写检查工具识别为拼写错误的文本的样式。 |