CSS :target 选择器
定义和用法
URL 带有后面跟有锚名称 #,指向文档内某个具体的元素。这个被链接的元素就是目标元素(target element)。
:target
选择器可用于选取当前活动的目标元素。
版本: | CSS3 |
---|
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | |||||
---|---|---|---|---|---|
:target | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
语法
:target {
css declarations;
}
更多实例
实例
创建模式框(对话框):
/* 模态框的背景 */
.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);
}
亲自试一试 »