Answers for "change button border color"

CSS
0

border buttom color

div {
	border-bottom-color: coral;
}
Posted by: Guest on September-01-2020
0

onclick button border color change

function clickimageone(el){
	el.style.border = "1px solid blue";
	document.getElementById("border2").className="borderorange";
}
Posted by: Guest on March-13-2021
0

onclick button border color change

<div class="image"><img src="img/500.png" onclick="clickimageone(this)" class="border1" style="height: 500px; max-height: 150px; max-width: 300px; top: 50px; left: 50px"></div>
<div class="image"><img src="img/1000.png" onclick="clickimagetwo(this)" class="border2" style="height: 500px; max-height: 150px; max-width: 300px; top: 50px; left: 100px"></div>
Posted by: Guest on March-13-2021

Code answers related to "change button border color"

Browse Popular Code Answers by Language