“Ubah warna batas input saat dipilih” Kode Jawaban

Ubah Warna Sorotan Perbatasan pada Elemen Teks Input

input:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}
textarea:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}
Marty McFly

Ubah warna batas input saat dipilih

input:focus {
	outline: none;
  	border: 1px solid red;
}
Lioruby

Ubah Warna Sorotan Perbatasan pada Elemen Teks Input

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}
Marty McFly

cara mengubah warna batas input dengan js

document.getElementById("fName").className = document.getElementById("fName").className + " error";  // this adds the error class

document.getElementById("fName").className = document.getElementById("fName").className.replace(" error", ""); // this removes the error class
ayaya

Jawaban yang mirip dengan “Ubah warna batas input saat dipilih”

Pertanyaan yang mirip dengan “Ubah warna batas input saat dipilih”

Lebih banyak jawaban terkait untuk “Ubah warna batas input saat dipilih” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya