A small CSS file to provide consistency across browsers
Back
Is there any reason you'd want to use translate() instead of absolute positioning?
Front
translate() uses GPU so it is more performant
translate() may not work on older browsers
Back
What is position: fixed?
Front
Relative to the viewport. Stays when scrolled.
Back
What are some of the "gotchas" for writing efficient CSS?
Front
Don't use * universal selector
Avoid inline CSS
Back
How would you approach fixing browser-specific styling issues?
Front
Try autoprefixer
Back
What does `* { box-sizing: border-box; }` do? What are its advantages?
Front
Defines how the width and height of an element are calculated
Easier to track since height and width are based on outermost property. Default is box-sizing: content-box