HTML and CSS Reference
In-Depth Information
Figure 15-6 The Cool Shoes & Socks web page viewed in Internet Explorer 8.
First of all, the newsletter box disappeared! This isn't actually a browser bug, though. When adding multiple back-
grounds to the newsletter box in Chapter 5, I didn't include an instruction to provide a fallback for older browsers
that don't support multiple backgrounds. If you forget to add fallbacks—we all do from time to time—you can pick
up these omissions during browser testing and fix them:
1. In styles.css, find the #newsletter rule set:
#newsletter {
color: white;
border-radius: 8px;
border: rgba(0,0,0,0.1) solid 5px;
background: url(“../images/icon-newsletter.png”) no-repeat 91% 2%,
url(“../images/bg-newsletter.png”) repeat 0 #00ACDF;
padding: 6%;
margin-left: -4px;
width: 88%;
}
Search WWH ::




Custom Search