HTML标记在<textarea>内部不起作用?

时间:2018-08-02 13:52:27

标签: php html textarea

这是我的代码:

  
 

输出为

文本区域位于此处

; 但我希望输出是绿色的 text area is 。请提供一些提示?

2 个答案:

答案 0 :(得分:1)

为什么不只使用CSS将<textarea>中的文本变为绿色?

textarea {
    color: green;
}

并删除<p>中的<textarea>标记,这样您只有:

<textarea  rows='15'  cols='90'  name="activities">
    text area is here
</textarea>

textarea {
  color: green;
}
<textarea  rows='15'  cols='90'  name="activities">
    text area is here
</textarea>

答案 1 :(得分:1)

您的方法不正确。

您可以使用内联样式使字体颜色变为绿色,

<textarea style="color:green;"  rows="15"  cols="90"  name="activities">  
text area is here
</textarea>

在您的主html页面的样式标签中,将其定义在标题部分,例如

<style>
textarea{
color: green;
}
</style>

或者,您可以在外部样式表中为textarea输入设置样式,

textarea{
color: green;
}

您还可以为textarea输入分配一个ID或一个类,然后添加CSS样式。