Easiest way to ensure same font and font size in labels, input boxes and text areas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:46:38Z http://stackoverflow.com/feeds/question/379652 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379652/easiest-way-to-ensure-same-font-and-font-size-in-labels-input-boxes-and-text-are 1 Easiest way to ensure same font and font size in labels, input boxes and text areas Drejc 2008-12-18T23:09:52Z 2008-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#379658 1 Answer by PhoenixRedeemer for Easiest way to ensure same font and font size in labels, input boxes and text areas PhoenixRedeemer 2008-12-18T23:12:38Z 2008-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#379679 1 Answer by Drejc for Easiest way to ensure same font and font size in labels, input boxes and text areas Drejc 2008-12-18T23:21:06Z 2008-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#379683 0 Answer by Triptych for Easiest way to ensure same font and font size in labels, input boxes and text areas Triptych 2008-12-18T23:21:50Z 2008-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>