close


支援CSS3 以上

用法::disabled
說明:
disabled 不可編寫的,但可見的。

css定義:
    input type 為 text 且是disabled
input[type=text]:disabled {
background: lime;
}
注意事項:

程式:
<!DOCTYPE html>
<html>
<head>
<title>css3 Selector disabled 套用樣式</title>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<style type="text/css">
input[type=text]:disabled {
    background: lime;
}
</style>
</head>
<body>
<form action="">
name: <input type="text" value="Levin"><br>
所在地: <input type="text" disabled="disabled" value="Taiwan">
</form>
</body>
</html>

圖1:



測試結束~
如果還不了解可參考:w3schools CSS Selector Reference


感謝~




 






 















其它文章

arrow
arrow
    創作者介紹
    創作者 PG Levin Li 的頭像
    PG Levin Li

    程式開發學習之路

    PG Levin Li 發表在 痞客邦 留言(0) 人氣()