如何用CSS设置textarea字段的内容样式

时间:2013-07-16 00:47:04

标签: html css

是否可以使用CSS设置textarea的内容样式?我至少需要在换行后插入更多空格。

我想基本上在每次回车或换行后在textarea中开始新的文本段落。

2 个答案:

答案 0 :(得分:0)

您无法设置textarea的内容样式。您所能做的就是手动插入更多空格。 一种方法是用双重回车取代单回车

答案 1 :(得分:0)

这可以使用Javascript或PHP ...

JS:str.replace("\r\n", "<br />");

http://www.w3schools.com/jsref/jsref_replace.asp

PHP:str_replace("\r\n", "<br />", "whatyouaresearching", "number of replacements you want to make")

http://php.net/manual/en/function.str-replace.php

这些是“字符串替换”功能。基本上我们正在做的是搜索给定字符串以获取某个值并将其替换为另一个值。

编辑:看起来我可能错误地认为文本区域会正确解释。 OP,你试过吗?如果这不起作用,请尝试使用HTML实体代码作为替换值:&#13;

http://www.w3schools.com/tags/ref_ascii.asp