属性选择器 发表于 2017-06-25 属性选择器属性选择器可以根据元素的属性及属性值来选择元素。 1234567891011121314151617181920<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style> input[type=text]{ width: 100px; height: 100px; background: red; } </style></head><body> <input type="text"> <input type="password"> <input type="button"> <input type="submit"></body></html> 123456789101112131415161718192021<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style> input[type=text][class='pwd']{ width: 100px; height: 100px; background: red; } </style></head><body> <input type="text" id='username'> <input type="text" class='pwd'> <input type="password"> <input type="button"> <input type="submit"></body></html> 坚持原创技术分享,您的支持将鼓励我继续创作! 赏 微信打赏 支付宝打赏