gpt4 book ai didi

html - 如何更改表单 text_area 的背景颜色?

转载 作者:太空宇宙 更新时间:2023-11-04 03:30:42 31 4
gpt4 key购买 nike

我的博客的背景颜色是蓝色,我想将我的 text_area 表单的背景颜色设为白色,但目前 text_area 表单与背景颜色相同我的博客。

在下面的代码中,text_field 的背景是白色的,提交按钮的背景也是白色的,但是 text_area 的背景仍然是蓝色的。



html.erb代码:

<div class="post">
<%= form_for @post do |f| %>
<%= f.label :title %>
<%= f.text_field :title %><br>
<%= f.label :post %> <br>
<%= f.text_area :post, size: "95x20" %><br>
<%= f.submit %>
<%end%>
</div>

CSS 代码:

.post input {
background-color: white;
}

最佳答案

只需将背景应用到 textarea 元素,例如:

.post textarea {
background-color: yellow;
}
<div class="post">
<textarea></textarea>
</div>

关于html - 如何更改表单 text_area 的背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26371194/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com