Sunday, December 18, 2005

IE <pre> overflow Attribute Error

Internet Explorer fails to properly render the <pre> tag overflow: auto correctly. A simple hack from this forum post:
/* IE Fixes */
* html body pre {
    width: 95%;
    height: 100%;
    overflow: auto;
}

No comments: