欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

我这个li中的文字为什么在chrome下无法垂直居中?_html/css_WEB-ITnose

程序员文章站 2024-01-15 12:25:04
...
在IE中可以正常垂直居中,在chrome就是不行

CSS部分:
#logo {
height:180px;
background-image: url(logo.gif);
float:none;
/*position: relative;*/
padding:0px;
margin:0px auto;
/*margin-bottom:0px;*/
/*background-color: #369;*/
}
.header .nav-bar{
height: 33px;
background-color: #F90;
overflow:hidden;
}

.header .nav-site{
height:38px;

}

.header .nav-site li{
float:left;
}

.header .nav-site li a{
display: block;
height: 38px;
width: 100px;
line-height: 33px;
color: #fff;
font-size: 1.2em;
font-weight: bold;
text-align: center;
text-decoration: none;
}


HTML部分: