我正在尝试为输入文本框提供背景颜色。如果我使用内联样式,它将为字段提供颜色。现在我怎样才能改变我的背景颜色。
下面是我的代码:
<?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>
下面是输出: