ตัวอย่าง
ไฮไลท์สมอ HTML ใช้งาน:
:target
{
border: 2px solid #D4D4D4;
background-color: #e5eecc;
}
ลองตัวเอง» ความหมายและการใช้งาน
ที่มี URL ที่ # ตามด้วยชื่อสมอเชื่อมโยงไปยังองค์ประกอบบางอย่างภายในเอกสาร องค์ประกอบที่ถูกเชื่อมโยงไปเป็นองค์ประกอบเป้าหมาย
: การเลือกเป้าหมายที่สามารถนำไปใช้รูปแบบองค์ประกอบเป้าหมายที่ใช้งานอยู่ในปัจจุบัน
เวอร์ชัน: | CSS3 |
---|
สนับสนุนเบราว์เซอร์
ตัวเลขในตารางระบุราว์เซอร์รุ่นแรกที่สนับสนุนอย่างเต็มที่เลือก
ผู้เลือก | |||||
---|---|---|---|---|---|
:target | 4.0 | 9.0 | 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);
}
ลองตัวเอง»