which is the code for apllying css for applying it on whole page?
a.*
b.body
c.#
d.$
Answers
Answered by
0
Answer:
universal selector * is applied
Answered by
0
Option b is the correct answer for the above question.
Explanation:
When any user wants to put any style effects for the whole page then he can do it with the help of body attributes. The body is a tag of the HTML and any text or tag written in this tag appears on the whole page of the website. So when the user puts the CSS style and effects for the body tag then that effects appear on the whole page of the website.
The syntax to do this is "body{ property_of_css}". A user needs to put the CSS property on the place of "property_of_css". The above question asked to set the property for the whole page. Hence option b is the correct answer while the other is not because:-
- Option a and d is not used to reference any tag in CSS.
- Option c is used to reference any element by using the id.
Learn More:
- CSS : https://brainly.in/question/10771182
Similar questions