I've encountered many times the situation where posts don't display (blank) in IE (normal in Firefox). For example: today after finishing writing "Navigation Menu Style Categories - Extended Edition" of Beta Hack, I found that it could be displayed normally in Firefox (there was just a section of code too long, stretching across the entire computer screen, see the image). The requirement was not high; it just needed to be able to display. Incidentally, I used IE Tab (a commonly used Firefox extension) to check the display status in IE, and it failed to display (blank). Switching back to Firefox worked fine, but switching to IE Tab resulted in a blank page. After going back and forth for over an hour, I suddenly thought, could it be because of that long section of code in the middle? If this is what caused the failure to display in IE, then it should be solvable using the method mentioned in "A Good Solution for Sidebar Being Squeezed".
Enough talk, here's the solution:
Open the HTML template editor (save the template), and place the following CSS code into the template (before ]]></b:skin>).
```css
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
```
Save it, and you're done. Switch to IE Tab —— it works!
If you often encounter posts not displaying properly in IE, you can try this method.