“Warna tautan html” Kode Jawaban

cara menghapus warna tautan biru dari tag menggunakan CSS

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Ankur

Warna tautan html

<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>
BreezeCodes

Warna tautan default di html

:link { color: #0000EE; }
:visited { color: #551A8B; }
Unusual Unicorn

Tautan HTML - Warna yang Berbeda

<style>
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
</style>
naly moslih

Jawaban yang mirip dengan “Warna tautan html”

Pertanyaan yang mirip dengan “Warna tautan html”

Lebih banyak jawaban terkait untuk “Warna tautan html” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya