12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- html{
- box-sizing: border-box;
- }
- *,
- *::after,
- *::before{
- box-sizing: inherit;
- }
- ul[class],
- ol[class] {
- padding: 0;
- }
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- ul[class],
- ol[class],
- li,
- figure,
- figcaption,
- blockquote,
- dl,
- dd {
- margin: 0;
- }
- ul[class] {
- list-style: none;
- }
- img {
- max-width: 100%;
- display: block;
- }
- input,
- button,
- textarea,
- select {
- font: inherit;
- }
|