CSS property used to change the background colour
Answers
Answered by
6
Yes. CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.
mohdkaif1125:
its urgent
Answered by
10
u can change background color of a page or headings paragraph etc.
for example u want to change background color for h1
the code is -
<h1 style ="background-color:green;"> BeStUsErOfBrAiNlY </h1>
u can do the same for other things.
u can also make separate css file and attach with the main one. there it'll be easy.
u can simply make changes there..
using the above example,
in css page -
h1 {
background color:green;
}
Similar questions