Anybody know how to do this is? I need for different backround images in all for corners... Any suggestions, I know that i could do it the dirty way but is there a cleaner way
Unfortunately, you can't do this yet. This feature is coming in CSS3, but for the time being you will have to have four different boxes and place a corner background image in each.
Right now are you making it apear as background images of a table, and you are positioning it in the corners?
If you can afford to have a fixed width or height, it is possible to accomplish your trick with two divs in either event: Fixed width: <div class="twotopdivs"> <div class="twobottomdivs"> Some text. </div> </div> Code (markup): Fixed height: <div class="twoleftdivs"> <div class="tworightdivs"> Some text </div> </div> Code (markup): Or if you're really lucky and your div has a fixed width AND height, you can pull it off in one div. Of course, if it were, then you probably wouldn't be posting this problem. Not sure if any of this really helps. I'm just trying to find a way to make your life easier any way I can.