I would like to insert 4 background-images for each corner of the "outer" box.
Since the text can be resized I figured it's a bad idea to use just one background-image for the div, that fills the entire box, since it has to be aligned with a background pattern of the body and a text resize could throw the alignement off.
That's why I figured it's better put one background-image in each of the <div> <p> <span>s. But the p and the spans are smaller than the div which means their corners will land in different places. Sorry to make this long, but do you know of a good way to use several background-images but make it look as if they formed just one image in just one element, and that is also robust?
Why can't you just give the containing div position: relative, and then simply place 4 <span>s in each of its corners by positioning them absolutely and then assign the corner images to the <span>s?
Why mess with headers and <p>s if you think you don't need them, or why use more <divs> than needed? Divs look confusing, better use spans, one for each corner and place them by position: absolute within a relatively positioned div. (Haven't tried yet , but their method looks too verbose with ps, and divs, and hs, and ps, and divs, are they just trying to be fancy? )
Why mess with headers and <p>s if you think you don't need them, or why use more <divs> than needed? Divs look confusing, better use spans, one for each corner and place them by position: absolute within a relatively positioned div.
I don't like using too much code to create boxes and the like either... to me it removes the purpose of separating the visual from the content a little, but I think that it makes it easier to deal with later.
Bookmarks