CSS & TEXTAREA

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • barrypalmer
    New Member
    • Oct 2007
    • 9

    CSS & TEXTAREA

    Please, why does the first textarea work but the second not ??

    <html>
    <head>
    <style type="text/css">
    #txt {style="backgro und-color:#F0F0F0; color:#0000FF; font-size:10pt;"}
    </style>
    </head>
    <body>
    <form>
    <p>Area 1</p>
    <TEXTAREA NAME="this1" COLS="40" ROWS="3" STYLE="backgrou nd-color: #f0f0f0; color: #0000ff; font-size: 10pt;">
    Some text here</textarea>
    <p>Area 2</p>
    <TEXTAREA ID="txt" NAME="this2" COLS="40" ROWS="3">
    Some text here</textarea>
    </form>
    </body>
    </html>
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    It works for me. .

    Comment

    • AricC
      Recognized Expert Top Contributor
      • Oct 2006
      • 1885

      #3
      Not seeing a problem although you have some mixed CAPS in your tags change those to lowercase.

      Comment

      Working...