1. span 设置高度:
span 元素内单纯设置 height 是没有效果的,需要将其设置成 block 元素(display:block)。
但这样会导致 span 占据了整一行,我们通常不希望这样,所以可以采用 display:inline-block 。