CSS بوردر-راست-استایل اپریٹر
- پچھلے صف border-right-color
- بعدی صف border-right-width
Definition and Usage
border-right-style sets the style of the element's right border.
The border may only appear if this value is not none.
In CSS1, the HTML user agent only needs to support solid and none.
See also:
CSS Tutorial:CSS کا بوردر
CSS Reference Manual:border-right Attribute
HTML DOM Reference Manual:borderRightStyle Attribute
Example
Set the right border style:
p { border-style:solid; border-right-style:dotted; }
CSS Syntax
border-right-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;
Attribute Value
Value | Description |
---|---|
none | Define no border. |
hidden | It is the same as "none". However, it is not applied to tables. For tables, "hidden" is used to resolve border conflicts. |
dotted | Define dotted border. It is presented as a solid line in most browsers. |
dashed | Define dashed line. It is presented as a solid line in most browsers. |
solid | Define solid line. |
double | Define double line. The width of the double line is equal to the value of border-width. |
groove | Define 3D grooved border. Its effect depends on the value of border-color. |
ridge | Define 3D embossed border. Its effect depends on the value of border-color. |
inset | Define 3D inset border. Its effect depends on the value of border-color. |
outset | Define 3D outset border. Its effect depends on the value of border-color. |
inherit | It is specified that the border style should be inherited from the parent element. |
Technical Details
Default Value: | not specified |
---|---|
Inheritance: | no |
Version: | CSS1 |
JavaScript Grammar: | object.style.borderRightStyle="dotted" |
بھی کئی مثالیں
- بائیں جانب کی بوردر کا انداز تیار کرنا
- یہ مثال اس بات کا مظاہرہ کرتا ہے کہ کیسے کی بائیں جانب کی بوردر کا انداز تیار کیا جاتا ہے。
بrowsers کی پشتیبانی
جداول میں دیجیت اعداد اس کی پہلی براہ راست سہولت والی براہ راست سہولت کی نشاندہی کرتی ہیں。
چروم | IE / ایج | فایرفاکس | سافری | اوپرا |
---|---|---|---|---|
1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
- پچھلے صف border-right-color
- بعدی صف border-right-width