lie.</p> <p class="warning">The cake is a pie.</p> /*** CSS ***/ p#username { /* Use IDs sparingly */ font: bold 18px/1.4 'Georgia', serif; } .warning { /* Use classes all the time! */ color: red; } WHAT IF I ONLY WANT TO CHANGE SOME ELEMENTS?
cake is a lie. </p> /*** CSS ***/ /* Define styles for two selectors with a `,` */ a, .high-alert { text-decoration: underline; } HOLY SELECTORS, BATMAN! CAN I COMBINE THESE?