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
css border-right property syntax
Function: Set all properties of the right border into one statement.
Instructions: The following properties can be set in order: border-right-width, border-right-style, border-right-color. If you do not set one of the values, there will be no problem. For example, border-right:solid #ff0000; is also allowed.
Note: IE7 and earlier browsers do not support the value "inherit". IE8 requires !DOCTYPE. IE9 supports "inherit".
css border-right property example
<html> <head> <style type="text/css"> p { border-style:solid; border-right:thick double #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