1. CSS reset
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
* { margin: 0; padding: 0; box-sizing: border-box; } img { max-width: 100%; } ol, ul, li { list-style-type: none; list-style-position: inside; } table { border-collapse: collapse; border-spacing: 0; } input { outline: none; } a, button, select, input[type="checkbox"], input[type="submit"] { cursor: pointer; } summary { cursor: pointer; user-select: none; } pre, code { font-family: monospace, monospace; } |
2. CSS Base
1 2 3 4 5 6 7 8 9 10 |
body { font-family: Arial, sans-serif; font-size: 14px; } .container { width: 1200px; max-width: 100%; margin: 0 auto; } |