14
Aug
stored in: Uncategorized and tagged:
14
Aug
stored in: Uncategorized and tagged:
23
Sep

When you are coding up a brand new site, I think this is a pretty efficient workflow for how to handle CSS Sprites. 1. Ignore sprites entirely. Make every background image its own separate image and reference them as such in the CSS. 2. When you are reasonably sure the design is “done,” use the […]

23
Sep
stored in: Uncategorized and tagged:
23
Sep

The element needing multiple borders should have its own border and relative positioning. #borders { position: relative; border: 5px solid #f00; } The secondary border is added with a pseudo element. It is set with absolute positioning and inset with top/left/bottom/right values. This will also have a border and is kept beneath the content (preserving, […]