I've noticed in some people's HTML, the class="" attribute will say something like "wrapper outer", but in the CSS, there is no use of the word "wrapper" anywhere?
Why is that?
Thanks,
-Nick

Why is that?
Thanks,
-Nick
| Code: |
| .wrapper { color:green; }
.outer { border:5px solid red; } |
| Code: |
| <div class="wrapper">This text will be green,<div>
<div class="outer">this text will have a red border,<div> <div class="wrapper outer">and this text will be green with a red border!<div> |