我有一个Grails应用程序。 在GSP页面中,我添加了像这样的文本区域
<g:form controller="Comment" action="create" id="${post.id}">
<textarea name="comment_text" placeholder="Add a comment ..." required></textarea><br />
<button type="submit">Add the comment</button>
</g:form>
问题是我的textarea默认是红色的,当它是空的时(当我开始填充它时它是“经典的”)。我试图用
修改css属性textarea {
background-color: white;
}
但它什么也没做。我不知道如何拥有一个白色背景的“经典”texarea。
答案 0 :(得分:0)
我认为默认的Grails CSS文件会将其设为红色,因为它是required
。请尝试删除此属性。