CSS - Not Inherit (1)
by 1004lucifer
HTML
<div>
<input type="text" /><br />
<button id="encoding">인콛</button>
</div>
CSS
.parent :not(p) {
color: red;
}
by 1004lucifer
<div>
<input type="text" /><br />
<button id="encoding">인콛</button>
</div>
.parent :not(p) {
color: red;
}