css3 :enabled與:disabled偽類別選取器

來源:互聯網
上載者:User

標籤:text   添加   enable   單元   效果   char   bsp   enabled   cti   

css :enabled和:disabled偽類別選取器

在Web表單中,有些表單元素(如輸入框、密碼框、複選框等)有“可用”和“不可用”這2種狀態。預設情況下,這些表單元素都處在可用狀態。

在CSS3中,我們可以使用:enabled選取器和:disabled選取器來分別設定表單元素的可用與不可用這兩種狀態的CSS樣式。

文法:

:disabled {    style properties }:enabled {    style properties }

如:我們為“可用”狀態的文字框添加一個外輪廓線outline,然後為“禁用”狀態的文字框改變背景顏色。css代碼如下:

input[type="text"]:enabled{    outline:1px solid #63E3FF;}input[type="text"]:disabled{    background-color:#FFD572;}

 

css3 :enabled和:disabled執行個體

1.css3 :enabled執行個體

設定所有可用type="text"的input元素背景顏色:

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>disable</title>    <style>        input[type="text"]:enabled{            background:slateblue;        }            </style></head><body><form action="">    姓名: <input type="text" value="Mick" /><br>    密碼: <input type="text" value="123456" /><br>    國家: <input type="text"  value="中國" /><br></form></body></html>

 效果:

 

 

 

2.css :disabled執行個體

設定所有不可用type="text"的input輸入元素的背景顏色:

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>disable</title>    <style>        input[type="text"]:enabled{            background:slateblue;        }        input[type="text"]:disabled{            background:#dddddd;        }    </style></head><body><form action="">    姓名: <input type="text" value="Mick" /><br>    密碼: <input type="text" value="123456" /><br>    國家: <input type="text" disabled="disabled" value="中國" /><br></form></body></html>

 效果:

 

 

css3 :enabled與:disabled偽類別選取器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.