定義和用法
用#後跟一個錨名稱的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);
}
試一試»