I want to know that what is the main difference between these properties
body {
background-image: url("paper.gif");
}
and
body {
background: url("paper.gif");
}
both above properties results in a same way, showing a background image, and we can also put the color like that too
body {
background-color: #cccccc;
}
and
body {
background: #cccccc;
}
both above properties results in a light grey background color, so what's the main difference between these properties?