معرفی Selector های CSS - قسمت 4
نویسنده: میثم خوشبخت
تاریخ: ۱۳۹۳/۱۱/۳۰ ۱۹:۴۰
آدرس: www.dntips.ir
| مطالب | ۳۶۹۴ |
| نویسندگان | ۲۷۶ |
| گروههای مطالب | ۱۰۲۴ |
| نقشههای راه | ۱۱۹ |
| دورهها | ۱۴ |
| اشتراکها | ۱۷۹۱۴ |
<style>
:disabled {
background: yellow;
}
</style>
<input disabled="disabled"/>
<input/>
<input disabled="disabled"/>
<input /> | | | | | | Selector | نسخه CSS |
| 3.2 | 9.6 | 9.0 | 3.5 | 4.0 | :disabled | 3 |
<style>
:enabled {
background: yellow;
}
</style>
<input disabled="disabled" />
<input />
<input disabled="disabled" />
<input /> | | | | | | Selector | نسخه CSS |
| 3.2 | 9.6 | 9.0 | 3.5 | 4.0 | :enabled | 3 |
<style>
:read-only {
background: yellow;
}
</style>
<input readonly="readonly" />
<input />
<input readonly="readonly" />
<input /> | | | | | | Selector | نسخه CSS |
| Yes | Yes | No | -moz- | Yes | :read-only | 3 |
<style>
:read-write {
background: yellow;
}
</style>
<input readonly="readonly" />
<input />
<input readonly="readonly" />
<input /> | | | | | | Selector | نسخه CSS |
| Yes | Yes | No | -moz- | Yes | :read-write | 3 |
| | | | | | Selector | نسخه CSS |
| 5.0 | 10.0 | 10.0 | 4.0 | 10.0 | :valid | 3 |
<style>
:valid {
border: 3px solid green;
}
:invalid {
border: 3px solid red;
}
</style>
<input type="number" />
<input type="text" pattern="^[a-z]{2,10}$"/>
<input type="email" /> | | | | | | Selector | نسخه CSS |
| 5.0 | 10.0 | 10.0 | 4.0 | 10.0 | :invalid | 3 |
<style>
:required {
background: yellow;
}
</style>
<input required="required" />
<input />
<input required="required" />
<input /> | | | | | | Selector | نسخه CSS |
| 5.0 | 10.0 | 10.0 | 4.0 | 10.0 | :required | 3 |
<style>
:optional {
background: yellow;
}
</style>
<input required="required" />
<input />
<input required="required" />
<input /> | | | | | | Selector | نسخه CSS |
| 5.0 | 10.0 | 10.0 | 4.0 | 10.0 | :optional | 3 |
| | | | | | Selector | نسخه CSS |
| 5.2 | 11.0 | No | 28.0 | 10.0 | :in-range | 3 |
<style>
:in-range {
border: 3px solid green;
}
:out-of-range {
border: 3px solid red;
}
</style>
<input type="number" min="10" max="50" /> | | | | | | Selector | نسخه CSS |
| 5.2 | 11.0 | No | 28.0 | 10.0 | :out-of-range | 3 |