vote up 4 vote down star

How do I make a textarea have the same font as everything else on the webpage?

Currently I have my code:

test.html:

    <html>
      <head>
        <link rel="stylesheet" href="test.css">
      </head>
    <body>
        <div id="testarea">
          <textarea></textarea>
        </div>
    </body>
    </html>

test.css:

    body { font: 100%/120% Verdana, Arial, Helvetica, sans-serif;}
    #testarea textarea { width: 30em;height: 7em;font: inherit;}

Font inherits in Mozilla, but IE7 keeps Courier inside the textarea.

UPD: Apparently inherit does not work in IE for textarea, so I'll go with AlbertoPL's method.

flag

79% accept rate

1 Answer

vote up 1 vote down check

Simply create a textarea element and define your font element there.

textarea { font: 100%/120% Verdana, Arial, Helvetica, sans-serif;}

you can move it out of the body element.

You'll have to define the font twice (once in body and once in textarea) if you don't want to use *

link|flag
That'd work, but there's apparently a fair amount of overhead involved in applying a style to everything via * – da5id May 13 at 2:25
Defining font twice will also definitely work, but why won't font: inherit work? Like I said, I can't test atm, but I'm 99% certain that's not what I did... – da5id May 13 at 2:40
I'm going to guess that IE7 simply does not inherit correctly, which is a shame. – AlbertoPL May 13 at 2:53
That'd be right :/ – da5id May 13 at 3:01
Eric Meyer removed the 'inherit' values from his famous CSS reset after realizing that IE does not support it properly meyerweb.com/eric/thoughts/… – Andy Ford May 13 at 5:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.