Pemilihan Elemen Lanjutan dalam CSS- Teknik dan Contoh

Kelas pseudo

Kelas pseudo membolehkan anda memilih keadaan atau kedudukan tertentu sesuatu elemen. Sebagai contoh, :hover memilih elemen apabila penunjuk tetikus berada di atasnya, :focus memilih elemen apabila ia dipilih atau mempunyai fokus, :nth-child() memilih elemen anak tertentu dalam kumpulan.

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;  
}  

 

unsur pseudo

Pseudo-elements membolehkan anda mencipta elemen maya untuk menyesuaikan elemen sedia ada.

Sebagai contoh, ::before dan ::after cipta elemen sebelum dan selepas 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;  
}  

 

Kombinator

Penggabung membolehkan anda menggabungkan pemilih untuk memilih elemen berdasarkan perhubungannya. Contohnya, element1 element2 pilih element2 dalam element1, element1 > element2 pilih elemen anak langsung element1, element1 + element2 pilih element2 serta-merta selepas 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 membolehkan anda memilih elemen berdasarkan nilai atributnya. Contohnya, [attribute] pilih elemen dengan atribut attribute, [attribute=value] pilih elemen dengan atribut attribute sama dengan value, [attribute^=value] pilih elemen dengan atribut attribute bermula 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 membolehkan anda memilih elemen yang tidak sepadan dengan pemilih tertentu. Sebagai contoh, memilih elemen yang tidak mempunyai kelas, memilih elemen yang tidak mempunyai 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 ini menunjukkan pemilihan elemen lanjutan dalam CSS. Anda boleh menyesuaikan dan menggunakan teknik ini untuk menggayakan dan menyesuaikan elemen pada halaman web anda seperti yang dikehendaki.