2012-03-19 21 views

答えて

6

かなり単純なビット:

textarea { 
    text-decoration: underline; 
} 

この文字通りテキストエリア内のテキストのすべての単一のビットを強調します。

1

どちらのボックス内の唯一のテキストに下線を引くtext-decoration:underline;を行う全体のテキストボックス、OR

を強調するためにborder-bottom:1px solid black;を使用しています。 textareaを使用しているので、これがあなたが望むものだと思います。

textarea { text-decoration:underline!important; } 

以上の特異性を追加します:

body form textarea { text-decoration:underline; } 
1
textarea { text-decoration:underline; } 

<html> 
<head> 
    <title>Texarea css example</title> 
    <style type="text/css"> 
    #t { 
     text-decoration: underline; 
    } 
    </style> 
</head> 
<body> 
    <textarea id="t">your text here</textarea> 
</body> 
</html> 
0

はい、あなたはこのように、CSSを使用することができますが、それは "取って" でない場合は、あなたのスタイルを強制することができ

関連する問題