CSS :target 选择器
定义和用法
带有 # 后跟锚点名称的 URL 链接到文档中的某个元素。被链接到的元素是目标元素。
:target
选择器可用于设置当前活动目标元素的样式。
版本 | CSS3 |
---|
浏览器支持
表中的数字指定了完全支持该选择器的第一个浏览器版本。
选择器 | |||||
---|---|---|---|---|---|
:target | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS 语法
:target {
css 声明;
}
更多示例
示例
创建模态框(对话框)
/* 模态框的背景 */
.modal {
display: none;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
/* 当被定位时显示模态框 */
.modal:target {
display: table;
position: absolute;
}
/* 模态框 */
.modal-dialog {
display: table-cell;
vertical-align: middle;
}
/* 模态框的内容 */
.modal-dialog .modal-content {
margin: auto;
background-color: #f3f3f3;
position: relative;
padding: 0;
outline: 0;
border: 1px #777 solid;
text-align: justify;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
亲自试一试 »