How should you complete the relevant CSS styles?

HOTSPOT
You create a custom style by using CSS3.
A box with rounded corners must appear around text. The box must match the following illustration:

You need to add the CSS3 markup to your style.
How should you complete the relevant CSS styles? (To answer, select the appropriate option from
each drop-down list in the answer area.)

HOTSPOT
You create a custom style by using CSS3.
A box with rounded corners must appear around text. The box must match the following illustration:

You need to add the CSS3 markup to your style.
How should you complete the relevant CSS styles? (To answer, select the appropriate option from
each drop-down list in the answer area.)

Answer:



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Question

Question

???????????????????????

Terminator

Terminator

box-sizing:border-box; does not make any fucking sense. http://jsfiddle.net/6quqovfr/196/

11-4-a

11-4-a

Weird, because when I open your fiddle (chrome) it works fine. I do agree that it’s stupid tho :p

Iron

Iron

I think it should be:

1. display: inline;
2. border-radius: 10px;

Robin

Robin

Nope, it is:
p {
border:solid;
border-radius:10px;
box-sizing:border-box;
}