假設我有一個像在ASP.net一個下拉列表:如何申請ASP.net下拉列表中禁用風格
<asp:DropDownList ID="ddOwnershipDocumentType" class="msbdd" runat="server">
</asp:DropDownList>
這裏是msdbdd的定義:
.msbdd {
font-family: WMitraBold;
font-weight: normal;
color: #000;
font-size: 12px;
text-align: right !important;
direction: rtl;
width: 100%;
border: 1px solid #aaa;
outline: none;
box-sizing: border-box;
background-color: rgba(255,255,255,0.7);
}
我試圖在其禁用時將樣式應用於此下拉列表。我試過.msbdd select[disabled]
,.msbdd select:disabled
,.msbdd select[readonly]
,.msbdd select:read-only
但他們都沒有工作(在Chrome中)。
如何在CSS中選擇禁用的下拉列表?
它被禁用後面的代碼? – prospector