單獨設定input text文字框樣式

antzone發表於2017-04-12

nput元素種類繁多,如果想單獨設定某一種type型別的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[type="text"] {
  width:180px;
  height:30px;
  border:1px solid blue;
}
</style>
</head>
<body>
<input type="text">
<input type="password">
</body>
</html>

使用屬性選擇器即可實現我們的要求,參閱CSS E[att="val"]屬性選擇符一章節。


相關文章