/*
pre-font-inherit.css---make <pre> inherit parent font by default.
Chris K. Young <ckstyle@software.hedgee.com>, July 2005.
$Id: pre-font-inherit.css,v 1.1 2005/07/14 10:39:51 cky Exp $

This work is placed in the public domain, and I abandon all copyright
interest in it.  Do with it what you will.
*/

/*
Normally browsers use monospace for <pre>. These two blocks make <pre>
use the inherited font by default, and monospace only when explicitly
specified.
*/
pre {
    font-family: inherit;
}
pre.mono {
    font-family: monospace;
}
