Hey, I have this code: #videobox-column1 img, embed, object { margin:10px 0 0 11px; } Code (markup): This code makes the style properties apply to all img, embed and object element on the web page. How do I make it specific so that they only apply to the img, embed, object elements in the videobox-column1 ID?
Add the ID to the style rules, like so: #videobox-column1 img, #videobox-column1 embed, #videobox-column1 object { margin: 10px 0 0 11px; } Code (markup):