• Anyone know of a CSS fix for IE so it will correctly render the background color and border of my blockquote?

    blockquote {
    border: solid #63C 1px;
    background-color: #FDFCFE;
    padding: 10px;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try:
    blockquote {
    border: 1px solid #63c;
    background: #fdfcfe;
    padding: 10px;
    }

    Thread Starter alan

    (@alan)

    Nope that didn’t fix it…..I thought maybe the colors were too weak to render but I also tried to put a thick border on the left without the background color and it still didn’t render. Some of the border and even with a background would shows up when I scrolled…but it never works over the whole blockquote.

    Thread Starter alan

    (@alan)

    Fixed: I found I needed to have UNblockquoted text preceeding the blockquote. Go figure. ??

    what exactly do you mean as :
    Fixed: I found I needed to have UNblockquoted text preceeding the blockquote. Go figure. ??
    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blockquote in IE won’t render border & background’ is closed to new replies.