Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Padding changes from browser to browser Reply To: Padding changes from browser to browser

#191425
LewisCowles1986
Participant

you need to set box-sizing explicitly.

I use the following

* {
  box-sizing: border-box;
}

but you can also add vendor specific prefixes to target or add support for other systems