79832093

Date: 2025-11-27 21:36:16
Score: 0.5
Natty:
Report link

Buttons ignore the universal box-sizing rule because the browser’s default stylesheet sets them to content-box. This would mean that a type selector (button) has higher specificity than *, so it wins.

Override it explicitly:

button, input, select, textarea { box-sizing: border-box; }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tuhin Shaikh