css border-right-color property
Translation results:
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
#right
英[ raɪt] 美[raɪt]
adv. Immediately, right away; to the right, right; appropriately; always
adj. Correct; appropriate; right; good, normal
n.right;right;correct,just;right hand
vt.correct;straighten,make right;arrange;compensate
vi.(ships, etc.) restore , restore stability
Third person singular: rights Plural: rights Present participle: righting Past tense: righted Past participle: righted
#color
英[ 'kʌlə(r)] 美[ˈkʌlɚ]
n.<Beauty> color, color; skin color, complexion, blood color; pigment, dye; essence
v.<Beauty> ; to color...; to change the color of...; to whitewash, to render, to give color; to blush
Third person singular: colors Plural: colors Present participle: coloring Past tense: colored Past participle: colored
css border-right-color propertysyntax
Function: Set the color of the right 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-right-color propertyexample
<html>
<head>
<style type="text/css">
p
{
border-style: solid;
border-right-color: #ff0000
}
</style>
</head>
<body>
<p>Some text.</p>
</body>
</html>Run instance »
Click the "Run instance" button to view the online instance
