• i have tried everything and the border wont show up at all.i dunno y. this is the class i have set for my images borders

    .picborder {
    background-color: #B988E3;
    padding: 4px;
    border: 1px solid #936BB4;
    }

    everything shows BUT the padding. is there another way around this??!

Viewing 1 replies (of 1 total)
  • Hi Diva,

    It would help if you could post a URL so we could see the code.

    In any case, this is the CSS I have for right and left aligned images on my site (available in my profile, and it works in all major browsers.

    #content img.left {
    float: left;
    padding: 16px;
    border: 1px solid #bbb;
    margin: 8px; }
    
    #content img.right {
    float: right;
    padding: 16px;
    border: 1px solid #bbb;
    margin: 16px 32px 16px 0; }
Viewing 1 replies (of 1 total)
  • The topic ‘image borders work great in FF but not in IE’ is closed to new replies.