Multiple Background Images?

Discussion in 'HTML & Website Design' started by emil2k, Jan 27, 2006.

  1. #1
    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 :confused:
     
    emil2k, Jan 27, 2006 IP
  2. FeelLikeANut

    FeelLikeANut Peon

    Messages:
    330
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    FeelLikeANut, Jan 28, 2006 IP
  3. toms

    toms Peon

    Messages:
    45
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You've got to do something like FeelLikeANut said
     
    toms, Jan 28, 2006 IP
  4. j-khoa

    j-khoa Guest

    Messages:
    35
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Right now are you making it apear as background images of a table, and you are positioning it in the corners?
     
    j-khoa, Feb 5, 2006 IP
  5. AWD1

    AWD1 Peon

    Messages:
    191
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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.
     
    AWD1, Feb 5, 2006 IP
  6. Corey Bryant

    Corey Bryant Texan at Heart

    Messages:
    1,126
    Likes Received:
    51
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Corey Bryant, Feb 6, 2006 IP