I'm using the same style sheet for multiple pages. The problem is that I have unique backgrounds on each page. I don't want to make a new style sheet for each page when the only difference is the background.
body {
background: #fff url(image/header.png) repeat-x;
color: #333333;
font-size: 13px;
}
Any suggestions?
body {
background: #fff url(image/header.png) repeat-x;
color: #333333;
font-size: 13px;
}
Any suggestions?
Comment