Thursday, December 6, 2012

style.borderRight

Properti style.borderRight digunakan untuk menetapkan style.borderRightWidth, style.borderRightStyle, dan style.borderRightColor dalam satu deklarasi.

Sintaks:

obj.style.borderRight = value;

Nilainya:

  • sub-style.borderRight
    Properti style.borderRightWidth, style.borderRightStyle, dan style.borderRightColor yang dipisahkan spasi.
  • inherit

Contoh:

<HTML> <HEAD> <TITLE>style.borderRight</TITLE> <STYLE TYPE="text/css"> #mydiv { width: 500px; height: 500px; margin: 0 auto; border: solid red 1px; } </STYLE> </HEAD> <BODY> <DIV ID="mydiv"></DIV> <SCRIPT TYPE="text/javascript"> document.getElementById("mydiv").style.borderRight = "15px dashed green"; </SCRIPT> </BODY> </HTML>