Computer Science, asked by santoshk90557, 6 months ago

B. Fill in the blanks.
1. The
property is used to set the radius to get a rounded corner border.
2. Margin properties allow you to set the
around an element.
3. Every property has a
according to which the selector is displayed.
4. The text-decoration property is used to give underline,
or
effect to the text.
5. The repeat-x value repeats the image in the background​

Answers

Answered by aakash8458
4

Answer:

The border-radius property defines the radius of the element's corners.

Tip: This property allows you to add rounded corners to elements!

This property can have from one to four values. Here are the rules:

Four values - border-radius: 15px 50px 30px 5px; (first value applies to top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner):

Three values - border-radius: 15px 50px 30px; (first value applies to top-left corner, second value applies to top-right and bottom-left corners, and third value applies to bottom-right corner):

Two values - border-radius: 15px 50px; (first value applies to top-left and bottom-right corners, and the second value applies to top-right and bottom-left corners):

One value - border-radius: 15px; (the value applies to all four corners, which are rounded equally:

Similar questions