html { | |
| ------ | --------------------------------------- |
| | line-height: 1.15; /* 1 */ |
| | -webkit-text-size-adjust: 100%; /* 2 */ |
| | }
normalize.css的默认行高设置的是1.15,有小数,可能会导致一些样式问题。 可以在reset.css重新设置适合的。eg:
html{
line-height: 1.2;
}
中文默认可能会往上一点,英文会往下沉一点