css匹配type屬性值為text的input元素

antzone發表於2017-04-10

分享一段程式碼例項,它實現了匹配type屬性值為text的input元素。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
input {
  width:180px;
  height:30px;
}
input[type=text] {
  color:green;
}
</style>
</head>
<body>
<input type="text" value="螞蟻部落"/>
<input type="url" value="www.softwhy.com"/>
</body>
</html>

使用屬性選擇器即可實現,具體可以參閱CSS E[att="val"]一章節。

相關文章