Javascript DOM CSS Style border Property set width, style, color

Introduction

Change the width, style and color of the border of a <div> element:

document.getElementById("myDiv").style.border = "thin dotted red";

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDiv {/*from ww  w .  j a  v  a  2 s  .c o m*/
  border: thick solid blue;
}
</style>
</head>
<body>

<div id="myDiv">This is a div element.</div>
<br>
<button type="button" onclick="myFunction()">Change border</button>

<script>
function myFunction() {
  document.getElementById("myDiv").style.border = "thin dotted red";
}
</script>

</body>
</html>



PreviousNext

Related