我正在尝试为Input TextBox提供背景颜色。如果我使用内联样式,它将为字段赋予颜色。现在我该如何更改背景颜色。
以下是我的代码:
<?xml version="1.0" encoding="UTF-8" ?>
<amx:view xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:amx="http://xmlns.oracle.com/adf/mf/amx"
xmlns:dvtm="http://xmlns.oracle.com/adf/mf/amx/dvt">
<amx:panelPage id="pp1">
<amx:facet name="header">
<amx:outputText value="Header" id="ot1"/>
</amx:facet>
<amx:inputText label="Name" id="it1" inlineStyle="background-color:blue;"
value="#{preferenceScope.feature.feature1.security.username}"/>
<amx:inputText label="Password" id="it2"
value="#{preferenceScope.feature.feature1.security.password}"/>
<amx:inputText label="URL" id="it3" value="#{preferenceScope.feature.feature1.security.url}"/>
</amx:panelPage>
</amx:view>
以下是Out Put:
答案 0 :(得分:2)
创建CSS文件(new =&gt; html =&gt; css文件)并添加以下代码
.textcolor input{
background-color:Blue !important;
}
输入文本Style Class
中的属性写textcolor
(刚刚添加到css文件中的类)。
然后打开adfmf-feature.xml,在内容选项卡下选择您的功能,包括您创建的css文件。
就是这样。