Question:Consider the following code: border-opacity:0.7; Given a div element that needs to have a transparent red border, which of the following code samples will work in conjunction with the code above to accomplish the requirement?
A border: 1px solid rgba(255, 0, 0, 0.7);
B border: 1px solid rgb(255, 0, 0, 0.7);
C border: 1px solid rgba(255, 255, 0, 0.7);
D border: 1px solid red; opacity: 0.7;
+ AnswerA
+ Report