Properties
CSS
border-style
The border-style property is a shorthand property for setting border-top-style, border-right-style, border-bottom-style, and border-left-style.
border-style: [ none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset ]{1,4} | inherit
| Initial: | none |
| Applies To: | all elements |
| Inherited: | no |
| Percentages: | NA |
| Media: | visual |
DOM
[window.]document.getElementById("element-id").style.borderStyle = "border-top-style border-right-style border-bottom-style border-left-style";
