Properti style.border adalah bentuk shorthand untuk menetapkan style.borderWidth, style.borderStyle, dan style.borderColor dalam satu deklarasi.
Sintaks:
obj.style.border = value;
Nilainya:
- sub-style.border
Properti style.borderWidth, style.borderStyle, dan style.borderColor yang dipisahkan spasi inherit
Contoh:
<HTML>
<HEAD>
<TITLE>style.border</TITLE>
<STYLE TYPE="text/css">
#mydiv
{
width: 500px;
height: 500px;
margin: 0 auto;
}
</STYLE>
</HEAD>
<BODY>
<DIV ID="mydiv"></DIV>
<SCRIPT TYPE="text/javascript">
document.getElementById("mydiv").style.border = "10px dotted green";
</SCRIPT>
</BODY>
</HTML>