适用于由空格分隔的属性值

设置表单的技俩

属性决定器在为不带有 class 或 id 的表单配置技俩时特别有用:

 

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;
}