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;
}
by 1004lucifer
<div>
<input type="text" /><br />
<input type="button" /><br />
<input type="password" /><br />
<input type="file" />
</div>
input:not([type="text"]) {
border: 1px red solid;
}