Contoh
Sorot anchor HTML aktif:
:target
{
border: 2px solid #D4D4D4;
background-color: #e5eecc;
}
Cobalah sendiri " Definisi dan Penggunaan
URL dengan # diikuti dengan nama anchor, link ke elemen tertentu dalam dokumen. Unsur yang terhubung adalah elemen target.
The: Target pemilih dapat digunakan untuk gaya elemen target aktif saat ini.
Versi: | CSS3 |
---|
Dukungan Browser
Angka-angka dalam tabel menentukan versi browser pertama yang mendukung penuh pemilih.
Pemilih | |||||
---|---|---|---|---|---|
:target | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS Syntax
:target {
css declarations ;
}
Contoh lebih
Contoh
Membuat menu tab:
.tab div {
display: none;
}
.tab
div:target {
display: block;
}
Cobalah sendiri " Contoh
Buat modal (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);
}
Cobalah sendiri "