Easiest way to ensure same font and font size in labels, input boxes and text areas - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:46:38Zhttp://stackoverflow.com/feeds/question/379652http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379652/easiest-way-to-ensure-same-font-and-font-size-in-labels-input-boxes-and-text-are1Easiest way to ensure same font and font size in labels, input boxes and text areas Drejc2008-12-18T23:09:52Z2008-12-18T23:45:27Z
<p>I have a page where I combine labels, input boxes and text areas to display some content.
I would like all of them to have the same font-family and font-size.
I have played with the <em>font-family: inherit</em> style but this doesn't seem to work for the input and text areas.
What would be the easiest way to ensure the same font / size over the whole page.</p>
http://stackoverflow.com/questions/379652/easiest-way-to-ensure-same-font-and-font-size-in-labels-input-boxes-and-text-are/379658#3796581Answer by PhoenixRedeemer for Easiest way to ensure same font and font size in labels, input boxes and text areas PhoenixRedeemer2008-12-18T23:12:38Z2008-12-18T23:12:38Z<p>My CSS is iffy as I haven't used it in some time, but I believe doing</p>
<pre><code>*
{
font-family: arial;
}
</code></pre>
<p>will apply to all.</p>
http://stackoverflow.com/questions/379652/easiest-way-to-ensure-same-font-and-font-size-in-labels-input-boxes-and-text-are/379679#3796791Answer by Drejc for Easiest way to ensure same font and font size in labels, input boxes and text areas Drejc2008-12-18T23:21:06Z2008-12-18T23:21:06Z<p>Ok ... this does the trick:</p>
<pre><code>*
{
font-family: arial;
}
input
{
font-family: inherit;
font-size: 100%
}
textarea
{
font-family: inherit;
font-size: 100%
}
</code></pre>
http://stackoverflow.com/questions/379652/easiest-way-to-ensure-same-font-and-font-size-in-labels-input-boxes-and-text-are/379683#3796830Answer by Triptych for Easiest way to ensure same font and font size in labels, input boxes and text areas Triptych2008-12-18T23:21:50Z2008-12-18T23:45:27Z<p>I think most CSS devs will do something like </p>
<pre><code>body {font: normal 10pt Arial}
</code></pre>
<p>At the top of the CSS file.</p>
<p>If you want to change labels from this, just add a </p>
<pre><code>label, input, textarea {font-family:Georgia}
</code></pre>
<p>somewhere down the road.</p>