Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Style all buttons except disabled */ button:not([disabled]) { cursor: pointer; } button:not([disabled]):hover { background: #0056b3; } /* All inputs except checkboxes and radio */ input:not([type="checkbox"]):not([type="radio"]) { border: 1px solid #ced4da; padding: 0.5rem; } /* All list items except the last */ li:not(:last-child) { margin-bottom: 0.5rem; }
Result
Open