更多"Try it Yourself"下面的例子。
定義和用法
在[ attribute = value ]選擇用來選擇與元素specified屬性和值。
版: | CSS2 |
---|
瀏覽器支持
在表中的數字指定完全支持選擇第一瀏覽器的版本。
選擇 | |||||
---|---|---|---|---|---|
[ attribute = value ] | 4 | 7 | 2.0 | 3.1 | 9.6 |
Note:對於[ attribute = value ]在IE8和更早,一個<!DOCTYPE>必須申報。
CSS語法
更多示例
例
當<input type="text">獲得焦點,逐漸從寬度為100像素改變250像素:
input[type=text] {
width: 100px;
transition: ease-in-out, width .35s ease-in-out;
}
input[type=text]:focus {
width: 250px;
}
試一試» 相關頁面
CSS教程: CSS屬性選擇