Question Code 1759 |
Question Which of the following is not a valid value for the font-stretch property? |
Answers
ultra-condense
semi-expanded
semi-narrower
inherit
initial
|
Question Code 1762 |
Question Consider an HTML page where there are several input fields. Which of the following CSS codes will have an effect on all inputs except the checkboxes and radio buttons? |
Answers
form input:not([type=”radio”], [type=”checkbox”]) { }
input:not([type=”radio”]):not([type=”checkbox”]) { }
input:not([type=”radio & checkbox”]) { }
input:!([type=”radio”]) , input:!([type=”checkbox”]) { }
|
Supported by: