css布局:行高与文字竖直居中

div高度与行高一致(height:30px=line-height:30px)

例:修改前

#nav a {
    font-size: 20px;
    font-family: '微软雅黑';
    text-align: center;
    color: #363636;
    display: block;
    width: 90px;
    height: 30px;
}

修改后

#nav a {
    font-size: 20px;
    font-family: '微软雅黑';
    text-align: center;
    color: #363636;
    display: block;
    width: 90px;
    line-height: 30px;
    height: 30px;
}

猜你喜欢

转载自blog.csdn.net/jy123_123/article/details/82820754
今日推荐