Sets or retrieves the width of the top border of the object.
Syntax
HTML
{ border-top-width : sWidth }
Scripting
object.style.borderTopWidth [ =sWidth ]
Possible Values
sWidth
Variant that
specifies or receives one of the following values.
medium
Default. Â
thin
Less than the default width.
thick
Greater than the default width.
width
Floating-point number, followed by an absolute units designator (cm, mm, in, pt, pc, or px) or a relative units designator (em or ex). For more information about the supported length units, see>CSS Length Units Reference.
The property is read/write
for all objects except the following, for which it is read-only:
currentStyle.
The property has a default value of
medium. The Cascading Style Sheets (CSS) attribute is
not inherited.
Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see About Dynamic Properties.
Remarks
As of Microsoft® Internet Explorer 5.5, this property applies to inline elements. With earlier versions of Internet Explorer, inline elements must have an absolute position or layout to use this property. Element layout is set by providing a value for the height property or the width property.
Examples
The following examples use the border-top-width attribute and the borderTopWidth property to specify the width of the top border.
This example uses a call to an embedded (global) style sheet to change the width of the top border to 1 centimeter when a mouse click occurs.
This feature requires Microsoft® Internet Explorer 4.0 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
This example uses inline script to change the width of the top border to 1 centimeter when a mouse click occurs.
<TD onclick="this.style.borderTopWidth='1cm'">
This feature requires Microsoft® Internet Explorer 4.0 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
Standards Information
property is defined in
Cascading Style Sheets (CSS), Level 1 (CSS1) .