css border-right-style attribute
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-style attributesyntax
Function: Set the style of the right border of the element.
Note: The border may appear only when this value is not none. In CSS1, HTML user agents only need to support solid and none.
Note: All browsers support the border-right-style attribute. The attribute values "inherit" or "hidden" are not supported in any version of Internet Explorer (including IE8).
css border-right-style attributeexample
<!DOCTYPE html> <html> <head> <style type="text/css"> p.dotted {border-right-style: dotted} p.dashed {border-right-style: dashed} p.solid {border-right-style: solid} p.double {border-right-style: double} p.groove {border-right-style: groove} p.ridge {border-right-style: ridge} p.inset {border-right-style: inset} p.outset {border-right-style: outset} </style> </head> <body> <p class="dotted">A dotted border</p> <p class="dashed">A dashed border</p> <p class="solid">A solid border</p> <p class="double">A double border</p> <p class="groove">A groove border</p> <p class="ridge">A ridge border</p> <p class="inset">An inset border</p> <p class="outset">An outset border</p> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance