我想知道如何在文本框中强化我的文字(如果可能的话,CSS解决方案)?
<textarea>
MyText
</textarea>
现在Text:MyText应加下划线。
感谢
答案 0 :(得分:6)
相当简单的CSS:
textarea {
text-decoration: underline;
}
这将在字面上强调textarea中的每一段文字。
答案 1 :(得分:1)
使用border-bottom:1px solid black;
为整个文本框添加下划线,或者
执行text-decoration:underline;
仅为框内的文字加下划线。由于您使用的是textarea
,我认为这是您想要的。
答案 2 :(得分:1)
textarea { text-decoration:underline; }
如果不是“正在”,你可以强制风格:
textarea { text-decoration:underline!important; }
或者增加更多特异性:
body form textarea { text-decoration:underline; }
答案 3 :(得分:0)
是的,您可以使用CSS,如下所示:
<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>