/    Sign up×

Reference (234)

Filter
clear all
unanswered
CSS
HTML
ABCLatest
border-inline-start-color

This property defines the color of the inline start border of the element. Which border is considered the inline-start border depends on the element’s writing mode, directionality and text orientation. Syntax The border-inline-start-color property accepts any color value. /* Any type of color value can be used: */ border-inline-start-color: red; border-inline-start-color: #8f8fff; border-inline-start-color: rgba(34, 128, […]

Copy Link Tweet This Post ThisShare This
border-inline-start-style

This property defines the line style of the inline start border. Which border is considered the inline start border depends on the element’s directionality, writing mode and text orientation. Syntax One of the following styles are accepted: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. /* Setting the style to be dashed */ […]

Copy Link Tweet This Post ThisShare This
border-inline-start-width

This property defines the width of the inline start border. Which border is considered the inline start border depends on the element’s directionality, writing mode and text orientation. Syntax This property accepts one of the keyword values: thin, medium or thick. Other than these, it can also accept any length value. /* Setting the inline […]

Copy Link Tweet This Post ThisShare This
border-inline-style

This property defines the line style of the inline borders of the element. Which borders are considered to be inline depends on the element’s directionality, writing mode and text orientation. Syntax One of the following styles are accepted: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. /* Setting the style to be dashed […]

Copy Link Tweet This Post ThisShare This
border-inline-width

This property defines the width of the inline borders of the element. Which borders are considered to be inline depends on the element’s directionality, writing mode and text orientation. Syntax This property accepts one of the keyword values: thin, medium or thick. Other than these, it can also accept any length value. /* Setting the […]

Copy Link Tweet This Post ThisShare This
border-left

This property is a shorthand that sets the left border’s properties. Syntax This shorthand sets the border-left-color, border-left-style and border-left-width properties. /* Setting values can be done in any order and any value can be omitted: */ border-left: thin solid blue; border-left: #fafa33 dotted 3px; border-left: dashed; Values border-width Same values apply as with the […]

Copy Link Tweet This Post ThisShare This
border-left-color

This property defines the color of the left border of the element. Syntax This property accepts any color value. /* Setting a value can be in any color format: */ border-left-color: rgba(243, 193, 56, 0.6); border-left-color: green; border-left-color: #ef33ff Values color Any color value can be used. initial Global CSS keyword – this sets the […]

Copy Link Tweet This Post ThisShare This
border-left-style

This property defines the line style of the left border of the element. Syntax One of the following styles are accepted: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. /* Setting the style to be dashed */ border-left-style: dashed; Values none No border will be used, this is the default value. hidden Same […]

Copy Link Tweet This Post ThisShare This
border-left-width

This property defines the width of the left border of the element. Syntax This property accepts one of the keyword values: thin, medium or thick. Other than these, it can also accept any length value. /* Setting the left border to be thick */ border-left-width: thick; /* Setting a length value: */ border-left-width: 4px; border-left-width: […]

Copy Link Tweet This Post ThisShare This
border-radius

This is a shorthand property sets the rounding of the corners of an element. Syntax This shorthand property sets the rounding for the four corners of an element: border-top-left-radius, border-top-right-radius, border-bottom-right-radius and the border-bottom-left-radius properties. Anywhere from one to four values can be used. If the third and/or fourth values are omitted, their values are […]

Copy Link Tweet This Post ThisShare This
border-right

This property is a shorthand that sets the right border’s properties. Syntax This shorthand sets the border-right-color, border-right-style and border-right-width properties. /* Setting values can be done in any order and any value can be omitted: */ border-right: thin solid blue; border-right: #fafa33 dotted 3px; border-right: dashed; Values border-width Same values apply as with the […]

Copy Link Tweet This Post ThisShare This
border-right-color

This property defines the color of the right border of the element. Syntax This property accepts any color value. /* Setting a value can be in any color format: */ border-right-color: rgba(243, 193, 56, 0.6); border-right-color: green; border-right-color: #ef33ff Values color Any color value can be used. initial Global CSS keyword – this sets the […]

Copy Link Tweet This Post ThisShare This
border-right-style

This property defines the line style of the right border of the element. Syntax One of the following styles are accepted: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. /* Setting the style to be dashed */ border-right-style: dashed; Values none No border will be used, this is the default value. hidden Same […]

Copy Link Tweet This Post ThisShare This
border-right-width

This property defines the width of the right border of the element. Syntax This property accepts one of the keyword values: thin, medium or thick. Other than these, it can also accept any length value. /* Setting the right border to be thick */ border-right-width: thick; /* Setting a length value: */ border-right-width: 4px; border-right-width: […]

Copy Link Tweet This Post ThisShare This
border-spacing

This property defines the length the spacing between neighboring cells in a <table> element. In order for this property to have effect, border-collapse needs to be set to separate. Syntax The border-spacing value is a length that defines the space between the cells. If two values are used they each define the horizontal and vertical […]

Copy Link Tweet This Post ThisShare This
border-start-end-radius

This property defines the border radius of the start-end corner of an element. Which corner is considered the “start-end” corner depends on the element’s directionality, writing mode and text orientation. Syntax One or two length or percentage values can be specified. If one length value is specified, the rounding will be based on a circle, […]

Copy Link Tweet This Post ThisShare This
border-start-start-radius

This property defines the border radius of the start-start corner of an element. Which corner is considered the “start-start” corner depends on the element’s directionality, writing mode and text orientation. Syntax One or two length or percentage values can be specified. If one length value is specified, the rounding will be based on a circle, […]

Copy Link Tweet This Post ThisShare This
border-style

This property is a shorthand that defines the line style of all the borders of an element. Syntax border-style is a shorthand for border-top-style, border-right-style, border-bottom-style and border-left-style. Anywhere from one to four values can be set with this shorthand, with each value setting the value for top, right, bottom and left respectively. If only […]

Copy Link Tweet This Post ThisShare This
border-top

This property is a shorthand that sets the top border’s properties. Syntax This shorthand sets the border-top-color, border-top-style and border-top-width properties. /* Setting values can be done in any order and any value can be omitted: */ border-top: thin solid blue; border-top: #fafa33 dotted 3px; border-top: dashed; Values border-width Same values apply as with the […]

Copy Link Tweet This Post ThisShare This
border-top-color

This property defines the color of the top border of the element. Syntax This property accepts any color value. /* Setting a value can be in any color format: */ border-top-color: rgba(243, 193, 56, 0.6); border-top-color: green; border-top-color: #ef33ff Values color Any color value can be used. initial Global CSS keyword – this sets the […]

Copy Link Tweet This Post ThisShare This
border-top-left-radius

sets the radius (or radiuses) based on which the top-left corner is rounded. Syntax The border-top-left-radius defines the rounding of the top-left corner. If the value is set to 0 (the default value), the corner will be a square, if one value is used, the corner will be rounded based on a circle with that […]

Copy Link Tweet This Post ThisShare This
border-top-right-radius

sets the radius (or radiuses) based on which the top-right corner is rounded. Syntax The border-top-right-radius defines the rounding of the top-right corner. If the value is set to 0 (the default value), the corner will be a square, if one value is used, the corner will be rounded based on a circle with that […]

Copy Link Tweet This Post ThisShare This
border-top-style

This property defines the line style of the top border of the element. Syntax One of the following styles are accepted: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset. /* Setting the style to be dashed */ border-top-style: dashed; Values none No border will be used, this is the default value. hidden Same […]

Copy Link Tweet This Post ThisShare This
border-top-width

This property defines the width of the top border of the element. Syntax This property accepts one of the keyword values: thin, medium or thick. Other than these, it can also accept any length value. /* Setting the top border to be thick */ border-top-width: thick; /* Setting a length value: */ border-top-width: 4px; border-top-width: […]

Copy Link Tweet This Post ThisShare This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.5,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...