★ wanayoo — archive 1999 http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/borderleftcolor.aspNouvelle recherche | Portail wanayoo
MSDN Online Web Workshop   All Products  |   Support  |   Search  |   microsoft.com Home  
microsoft.com Home
  Home  |   Magazines  |   Libraries  |   Developer Centers  |   Resources  |   Downloads  |   Search MSDN
 
border-left Attribute | b...     border-left-style Attribu...     DHTML Properties    
Web Workshop  |  DHTML, HTML & CSS

border-left-color Attribute | borderLeftColor Property


Sets or retrieves the color of the left border of the object.

Syntax

HTML{ border-left-color: sColor }
Scriptingobject.style.borderLeftColor [ = sColor ]

Possible Values

sColorString that specifies one of the color names or red-green-blue (RGB) values in the Color Table.

The property is read/write with a default value equal to the value of the color property; 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 Dynamic Properties.

Remarks

To use this property, inline elements must have an absolute position or layout. Element layout is set by providing a value for the height property or the width property.

Some browsers do not recognize color names, but all browsers should recognize RGB color values and display them correctly.

Example

The following examples use the border-left-color attribute and the borderLeftColor property to specify the color of the left border.

This example uses a call to an embedded (global) style sheet to change the color of the left border from red to blue when an onmouseover event occurs.

Sample Code

<HEAD>
<STYLE>
    TD { border-left-color: red;
        border-width: 0.5cm; border-style: groove}
    .blue { border-left-color: blue}
</STYLE>
</HEAD>
<BODY>
<TABLE BORDER>
<TR>
    <TD onmouseover="this.className='blue'"
        onmouseout="this.className=''">
        <IMG src="/old?u=http%3A%2F%2Fmsdn.microsoft.com%2Fworkshop%2Fauthor%2Fdhtml%2Freference%2Fproperties%2Fsphere.jpg&y=1999">
    </TD>
</TR>
</TABLE>

This feature requires Internet Explorer 4.0 or later. Click the icon below to install the latest version. Then reload this page to view the sample.
Microsoft Internet Explorer

This example uses inline scripting to change the color of the left border from red to blue when an onmouseover event occurs.

<TD onmouseover="this.style.borderWidth='0.5cm';
    this.style.borderLeftColor='blue'">

This feature requires Internet Explorer 4.0 or later. Click the icon below to install the latest version. Then reload this page to view the sample.
Microsoft Internet Explorer

Applies To

BLOCKQUOTE, BODY, BUTTON, CAPTION, CENTER, currentStyle, custom, DD, defaults, DIR, DIV, DL, DT, EMBED, FIELDSET, FORM, Hn, HR, IFRAME, IMG, INPUT type=button, INPUT type=checkbox, INPUT type=file, INPUT type=image, INPUT type=password, INPUT type=radio, INPUT type=reset, INPUT type=submit, INPUT type=text, ISINDEX, LI, LISTING, MARQUEE, MENU, OBJECT, OL, P, PLAINTEXT, PRE, runtimeStyle, SPAN, style, TABLE, TD, TEXTAREA, TH, UL, XMP

See Also

border