Latest web development tutorials

HTML DOM Style borderStyle property

Style Object Reference Style Objects

Definition and Usage

borderStyle property sets or returns the element's border style.

This property can be used 1-4 kinds of styles:

  • If you specify a style, for example: p {border-style: solid} - all four borders are solid lines.
  • If the provisions of two styles, for example: p {border-style: solid dotted} - border and bottom border is a solid line, and the left and right borders are dotted frame.
  • If the provisions of three styles, such as: p {border-style: solid dotted double} - on the border is a solid line, left border and right border is dotted bottom border is double.
  • If the provisions of four styles, such as: p {border-style: solid dotted double dashed} - on the border is a solid line, the right border of the dot, the double bottom border, left border is a dotted line.

grammar

Setting borderStyle properties:

Object.style.borderStyle="value"

Back borderStyle properties:

Object.style.borderStyle

描述
none 默认。定义无边框。
hidden 与 "none" 相同。不过应用于表时除外,对于表,hidden 用于解决边框冲突。
dotted 定义点状边框。
dashed 定义虚线边框。
solid 定义实线边框。
double 定义双线边框。双线的宽度等于 border-width 的值。
groove 定义 3D 凹槽边框。其效果取决于 border-color 的值。
ridge 定义 3D 垄状边框。其效果取决于 border-color 的值。
inset 定义 3D inset 边框。其效果取决于 border-color 的值。
outset 定义 3D outset 边框。其效果取决于 border-color 的值。
inherit 边框的样式从父元素继承。


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support borderStyle property.

Note: IE7 and earlier versions do not support the "inherit" value.IE8 only provides! DOCTYPE supported "inherit". IE9 support "inherit".


Examples

Examples

Change the four border style:

<html>
<head>
<style type="text/css">
#ex1
{
border: thick solid #FF0000;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.borderStyle="dotted double";
}
</script>
</head>
<body>

<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change style of the four borders</button>

</body>
</html>

try it"


Style Object Reference Style Objects