Label border colour

Hi,

Is it possible to set the border colour of a label?
For example, set the bottom border colour to black.

Thanks

Regular CSS works. In the control’s style property at design time:
border-bottom: 1px solid black;

Alternatively, at run time, you can use JavaScript:
Label1.style.borderBottom = "1px solid black"

Works fine, thanks Doug.