border

UK[ˈbɔ:də(r)] US[ˈbɔ:rdə(r)]

n.Border; edge; edging; wrapping Edge

vt.& vi. Bound with, on the edge of...

vt. Along the edge of, surround..., edge...

vi. Approximate, adjacent

Third person singular: borders Plural: borders Present participle: bordering Past tense: bordered Past participle: bordered

bottom

英[ ˈbɒtəm] 美[ˈbɑ:təm]

n. Bottom; end; hip; end

adj. Bottom of

vt. Install the bottom; measure the depth; find out the truth

vi. Reach the bottom; establish a foundation

Third person singular: bottoms Plural: bottoms Present participle: bottoming Past tense: bottomed Past participle: bottomed

color

英['kʌlə(r)] 美[ˈkʌlɚ]

n.<Beauty>Color, color; complexion, complexion, blood color; pigment, dye; essence

v.<Beauty> Color...; change the color of...; whitewash, render, color; blush

Third person singular: colors Plural: colors Present participle: coloring Past Formula: colored past participle: colored

css border-bottom-color property syntax

Function:Set the color of the lower border of the element.

Note: Only solid colors can be defined, and the border may appear only when the border style is a value other than none or hidden.

Note: Always declare the border-style attribute before the border-color attribute. The element must get a border before you can change its color.

css border-bottom-color property example

<html>
<head>
<style type="text/css">
p 
{
border-style:solid;
border-bottom-color:#ff0000;
}
</style>
</head>

<body>
<p>This is some text in a paragraph.</p>
</body>

</html>

Run instance »

Click the "Run instance" button to view the online instance