猿问

css怎么选择input里面为text的标签

想给input为text的单独设置样式,怎么选择

qq_救救我吧_1
浏览 2708回答 1
1回答

小呀么小二郎呀

<!DOCTYPE html> <html> <head> <style> input[type="text"] {   width:150px;   display:block;   margin-bottom:10px;   background-color:yellow;   font-family: Verdana, Arial; } input[type="button"] {   width:120px;   margin-left:35px;   display:block;   font-family: Verdana, Arial; } </style> </head> <body> <form name="input" action="" method="get"> <input type="text" name="Name" value="Bill" size="20"> <input type="text" name="Name" value="Gates" size="20"> <input type="button" value="Example Button"> </form> </body> </html>关键代码:input[type="text"]
随时随地看视频慕课网APP
我要回答