AmitDiwan has Published 11365 Articles

HTML DOM Style borderRightStyle Property

AmitDiwan

AmitDiwan

Updated on 23-Oct-2019 06:21:46

43 Views

The HTML DOM borderRightStyle property is used for setting or returning the right border style for an element.Following is the syntax for −Setting the borderRightStyle property −object.style.borderRightStyle = valueThe above properties are explained as follows −ValueDescriptionnoneThis is the default value specifying no border.hiddenThis is same as "none" but will still ... Read More

HTML DOM Style borderRightColor Property

AmitDiwan

AmitDiwan

Updated on 23-Oct-2019 06:10:17

50 Views

The HTML DOM borderRightColor property is used to get or set the color for Right border of an element.Following is the syntax for −Setting the borderRightColor property −object.style.borderRightColor = "color|transparent|initial|inherit"The above properties are explained as follows −ValueDescriptioncolorFor specifying the Right border color. Its default color is set to blacktransparentThe makes ... Read More

HTML DOM Style borderRight Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 14:08:35

69 Views

The HTML DOM borderRight property is used as a shorthand for getting or setting the Right border properties for an element. The borderRight property contains border-Right-width, border-Right-style, border-Right-color.Following is the syntax for −Setting the borderRight property:object.style.borderRight = "width style color|initial|inherit"The above properties are explained as follows −ParameterDescriptionwidthFor setting the Right ... Read More

HTML DOM Style borderRadius Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 14:03:23

182 Views

The HTML DOM borderRadius propert is used to add rounded corners to the element’s four sides. Using this property, we can set and get the border radius properties like borderTopLeftRadius, borderTopRightRadius, borderBottomRightRadius, borderBottomLeftRadius.Following is the syntax for −Setting the borderRadius property:object.style.borderRadius = "1-4 length|% / 1-4 length|%|initial|inherit"The property values are ... Read More

HTML DOM Style borderLeftWidth Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:59:02

61 Views

The HTML DOM borderLeftWidth property is used for setting or getting the Left border width for an element.Following is the syntax for −Setting the borderLeftWidth property −object.style.borderLeftWidth = "thin|medium|thick|length|initial|inherit"The property values are explained as follows −ValueDescriptionthinThis specifies a thin border.mediumThis specifies the medium border and is the default value.thickThis specifies ... Read More

HTML DOM Style borderLeftStyle Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:55:48

50 Views

The borderLeftStyle property is used for setting or returning the left border style for an element.Following is the syntax for −Setting the borderLeftStyle property −object.style.borderLeftStyle = valueThe above properties are explained as follows −ValueDescriptionNoneThis is the default value specifying no border.HiddenThis is same as "none" but will still take border ... Read More

HTML DOM Style borderLeftColor Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:36:19

57 Views

The HTML DOM borderLeftColor property is used to get or set the color for left border of an element.Following is the syntax for −Setting the borderImageWidth property −object.style.borderLeftColor = "color|transparent|initial|inherit"The above properties are explained as follows −ValueDescriptioncolorFor specifying the left border color. The default color is set to blacktransparentThe makes ... Read More

HTML DOM Style borderLeft Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:27:25

48 Views

The HTML DOM borderLeft property is used as a shorthand for getting or setting the left border properties for an element. The borderLeft property contains border-left-width, border-left-style, border-left-color.Following is the syntax for −Setting the borderImageWidth property −object.style.borderLeft = "width style color|initial|inherit"The above properties are explained as follows −ParameterDescriptionwidthFor setting the ... Read More

HTML DOM Style borderImageWidth Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:11:51

54 Views

The HTML DOM borderImageWidth property is used to set or get the width of the border image for an element.Following is the syntax for −Setting the borderImageWidth property −object.style.borderImageWidth = "number|%|auto|initial|inherit"The above properties are explained as follows −ValueDescriptionlengthFor describing the border width size in px.numberFor describing the border width in ... Read More

HTML DOM Style borderImageSource Property

AmitDiwan

AmitDiwan

Updated on 22-Oct-2019 13:08:35

60 Views

The HTML DOM borderImageSource property is used for setting or returning the source of the image to be used as border image for an element.Following is the syntax for −Setting the borderImageSource property −object.style.borderImageSource = "none|image|initial|inherit"The above properties are explained as follows −ValueDescriptionNoneThis means no image will be used. It ... Read More

Advertisements