西安市高新区建设局网站,做网站的免费空间,永久免费域名申请教程,网站视频管理系统有些场景中需要在相同元素中获取具有特定属性的元素#xff0c;比如同为input#xff0c;type属性有text、button#xff0c;可以通过属性选择器设置text和button的不同样式。 代码#xff1a;
style
input[typetext] {width: 150px;display: block;margin-bottom…有些场景中需要在相同元素中获取具有特定属性的元素比如同为inputtype属性有text、button可以通过属性选择器设置text和button的不同样式。 代码
style
input[typetext] {width: 150px;display: block;margin-bottom: 10px;background-color: yellow;
}input[typebutton] {width: 120px;margin-left: 35px;display: block;
}
/style
/head
body
form nameinput action methodgetFirstname:input typetext nameName valueBill size20Lastname:input typetext nameName valueGates size20input typebutton valueExample Button
/form/body渲染效果