CSS匹配input text文字框
大家都知道input的標籤根據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"]{ color:blue; } </style> </head> <body> <input type="tel" value="18300258888"/> <input type="text" value="www.softwhy.com" /> </body> </html>
上面的程式碼可以單獨設定文字框的value屬性值顏色。
input[type="text"]用法參閱CSS E[att="val"]屬性選擇符一章節。
相關文章
- CSS input 文字框樣式CSS
- CSS input文字框樣式CSS
- HTML input text單行文字域HTML
- input文字框寬度自適應
- input文字框焦點背景變色
- CSS 文字框圓角CSS
- CSS 文字裝飾 text-decoration & text-emphasisCSS
- Sublime Text提取正規表示式匹配的文字
- input文字框獲取焦點伸縮效果
- html input文字輸入框的一些總結HTML
- CSS 文字陰影 text-shadow 懸停效果CSS
- CSS 設定文字框游標顏色CSS
- CSS文字框與驗證碼垂直對齊CSS
- Input框防抖動
- 漸變邊框文字效果?CSS 輕鬆拿捏!CSS
- input標籤單行文字域type="text"的可以新增屬性以及其描述
- vxe-text-ellipsis vue 中使用 css 多行文字溢位VueCSS
- HTML input password 密碼框HTML密碼
- HTML input password密碼框HTML密碼
- 富文字框
- CSS text-strokeCSS
- CSS text-shadowCSS
- CSS text-overflowCSS
- SVG <text>繪製文字SVG
- Tkinter (19) 文字部件 Text
- jQuery匹配指定type型別input元素jQuery型別
- CSS text-fill-colorCSS
- [CSS] text-wrap: balanceCSS
- input輸入框的各種事件事件
- Element UI Input框輸入無效UI
- WPF TextBox not allowed illegal characters to be input and limit the text length in mvvmMITMVVM
- CSS 奇技淫巧 | 巧妙實現文字二次加粗再加邊框CSS
- 動態新增或減少文字框,並獲取文字框值
- CSS border邊框CSS
- 文字框和標籤
- input 輸入框只能輸入數字
- IE8 input框內容上下居中
- selenium 如何清除 input 框中的 value 值?