please is there any selector for the body in css than this
<body></body>
please is there any selector for the body in css than this
<body></body>
To give h1
elements blue text you would do this:
h1 {
color: blue;
}
How do you think you would give the body
element blue text?
body {
color: blue;
}
Right?
Thanks, i got the challenge right
Thanks, i got the challenge right
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.