gpt4 book ai didi

asp.net - 使用 Html.TextAreaFor 时如何更改字体和颜色?

转载 作者:搜寻专家 更新时间:2023-10-31 02:26:20 24 4
gpt4 key购买 nike

我正在使用下面的代码来显示一些文本,它不会改变字体颜色,有人知道为什么吗?

<%= Html.TextAreaFor(m => m.Component.ApplicationDescription, new { cols = "40%", Style = new Style { ForeColor = Color.Red } })%>

最佳答案

<%= Html.TextAreaFor(m => m.Component.ApplicationDescription, 
new { cols = "40%", style = "color:red;" })%>

或应用 css 样式:

<%= Html.TextAreaFor(m => m.Component.ApplicationDescription, 
new { cols = "40%", @class = "foo" })%>

看起来像这样:

.foo {
color: red;
}

关于asp.net - 使用 Html.TextAreaFor 时如何更改字体和颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2911634/

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