Which two CSS3 styles will achieve the goal?

You are styling the following DIV tag on a page by using CSS3.

You need to set the transparency of the object to 50%.
Which two CSS3 styles will achieve the goal? (Each correct answer presents a complete solution. Choose two.)

You are styling the following DIV tag on a page by using CSS3.

You need to set the transparency of the object to 50%.
Which two CSS3 styles will achieve the goal? (Each correct answer presents a complete solution. Choose two.)

A.
Option A

B.
Option B

C.
Option C

D.
Option D



Leave a Reply 3

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

six − 5 =


c

c

the correct answer is A and D, but D is
.Box {
background: rgba(255,0,0,0.5);
}

Repo

Repo

Both are correct. A and B.