定义和用法
用#后跟一个锚名称的URL,链接到某个特定元素的文档内。 元素被链接到的目标元素。
本:目标选择器可用于样式当前活动的目标元素。
版: | CSS3 |
---|
浏览器支持
在表中的数字指定完全支持选择第一浏览器的版本。
选择 | |||||
---|---|---|---|---|---|
:target | 4 | 9 | 3.5 | 3.2 | 9.6 |
CSS语法
:target {
css declarations ;
}
更多示例
例
创建模式(dialog box) :
/* The modal's background */
.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);
}
/* Display the modal when
targeted */
.modal:target {
display: table;
position: absolute;
}
/* The modal box */
.modal-dialog {
display: table-cell;
vertical-align: middle;
}
/* The modal's content */
.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);
}
试一试»