CSS - Not Inherit (4)

by 1004lucifer

HTML

<div>
  <input type="text" /><br />
  <input type="button" /><br />
  <input type="password" /><br />
  <input type="file" />
</div>

CSS

input:not([type="text"]) {
  border: 1px red solid;
}