border-style
border
border-top
none of the mentioned
Answer is Wrong!
Answer is Right!
The correct answer is: A. border-style
The border-style property defines the visual style of up to four different sides of a border. It can be used to specify the border width, border color, and border style for each side of an element.
The border property is a shorthand property that can be used to specify the border width, border color, and border style for all four sides of an element.
The border-top property is used to specify the border width, color, and style for the top border of an element.
The border-bottom property is used to specify the border width, color, and style for the bottom border of an element.
The border-left property is used to specify the border width, color, and style for the left border of an element.
The border-right property is
42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/>
Subscribe on YouTube
used to specify the border width, color, and style for the right border of an element.
For example, the following CSS code will create a red, 1px solid border around an element:
border: 1px solid red;
The following CSS code will create a red, 1px solid border on the top and bottom of an element, and a blue, 2px dashed border on the left and right sides:
border-top: 1px solid red;
border-bottom: 1px solid red;
border-left: 2px dashed blue;
border-right: 2px dashed blue;