4. Name the property used to set the right margin.
5. Which property is used to specify the width of the border?
Answers
Answered by
3
5.The border-width property sets the width of an element's four borders. This property can have from one to four values. Examples: border-width: thin medium thick 10px; top border is thin. right border is medium. bottom border is thick. left border is 10px.
4.The margin property sets the margins for an element, and is a shorthand property for the following properties: margin-top; margin-right; margin-bottom; margin-left; If the margin property has four values: margin: 10px 5px 15px 20px; top margin is 10px; right margin is 5px; bottom margin is 15px; left margin is 20px; If the margin property has three values: margin: 10px 5px 15px; top margin is 10px; right and left margins are 5px; bottom margin is 15px
Similar questions