Kelas semu
Pseudo-class memungkinkan Anda untuk memilih status atau posisi tertentu dari suatu elemen. Misalnya, :hover
memilih elemen saat penunjuk tetikus berada di atasnya, :focus
memilih elemen saat dipilih atau memiliki fokus, :nth-child()
memilih elemen turunan tertentu dalam grup.
Contoh:
/* Select all links when hovered over and change the text color */
a:hover {
color: red;
}
/* Select the <input> element when it is focused and change the border */
input:focus {
border: 2px solid blue;
}
/* Select the second element in a group of <li> elements and change the text color */
li:nth-child(2) {
color: green;
}
Elemen semu
Elemen semu memungkinkan Anda membuat elemen virtual untuk menyesuaikan elemen yang ada.
Misalnya, ::before
buat ::after
elemen sebelum dan sesudah elemen, ::first-line
dan ::first-letter
pilih baris pertama dan huruf pertama elemen.
Contoh:
/* Add content before each <p> element and style it */
p::before {
content: ">> ";
font-weight: bold;
color: gray;
}
/* Style the first letter of <h1> element */
h1::first-letter {
font-size: 2em;
font-weight: bold;
color: red;
}
Penggabung
Combinator memungkinkan Anda menggabungkan penyeleksi untuk memilih elemen berdasarkan hubungannya. Misalnya, element1 element2
memilih element2
di dalam element1
, element1 > element2
memilih elemen anak langsung dari element1
, element1 + element2
memilih element2
segera setelah element1
.
Contoh:
/* Select <span> elements inside an element with class "container" */
.container span {
color: purple;
}
/* Select <li> elements that are direct children of <ul> */
ul > li {
list-style-type: square;
color: blue;
}
Pemilih atribut
Pemilih atribut memungkinkan Anda memilih elemen berdasarkan nilai atributnya. Misalnya, [attribute]
memilih elemen dengan atribut attribute
, [attribute=value]
memilih elemen dengan atribut attribute
yang sama dengan value
, [attribute^=value]
memilih elemen dengan atribut attribute
yang diawali dengan value
.
Contoh:
/* Select all elements with the attribute data-type */
[data-type] {
font-weight: bold;
color: orange;
}
/* Select all <a> elements with the href attribute starting with "https://" */
a[href^="https://"] {
color: blue;
text-decoration: underline;
}
:not()
pemilih
Pemilih memungkinkan Anda untuk memilih elemen yang tidak cocok dengan pemilih tertentu. Misalnya memilih elemen yang tidak memiliki kelas, memilih elemen yang tidak memiliki ID. :not()
:not(.class)
class
:not(#id)
id
Contoh:
/* Select all <div> elements that do not have the class "hidden" */
div:not(.hidden) {
display: block;
background-color: lightgray;
}
/* Select all <input> elements that do not have the ID "email-input" */
input:not(#email-input) {
border: 1px solid gray;
}
Contoh-contoh ini menunjukkan pemilihan elemen tingkat lanjut di CSS. Anda dapat menyesuaikan dan menerapkan teknik ini untuk menata dan menyesuaikan elemen pada halaman web Anda sesuai keinginan.