Y
Hacker News
new
|
ask
|
show
|
jobs
by
peter-m80
254 days ago
this is a must
* { box-sizing: border-box }
1 comments
qbane
254 days ago
I prefer the following to ensure the interoperability of external libraries:
`body, html { box-sizing: border-box } * { box-sizing: inherit }`
link
`body, html { box-sizing: border-box } * { box-sizing: inherit }`