CSS - Not Inherit (1)

by 1004lucifer

HTML

<div>
  <input type="text" /><br />
  <button id="encoding">인콛</button>
</div>

CSS

.parent :not(p) {
  color: red;
}