CSS實現的文字框獲取焦點設定樣式程式碼

螞蟻小編發表於2017-02-27
本章節介紹一下利用css如何實現當文字框獲取焦點時候設定它的樣式。

程式碼例項如下:

[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:200px; 
  height:25px; 
  border:2px solid #FF0; 
} 
input:focus{ 
  background:#9FF; 
} 
</style> 
</head> 
<body> 
使用者名稱:<input type="text" name="username"/>
密 碼:<input type="text" name="pwd"/>
</body> 
</html>

相關文章