我正在尝试将 3 个 div 相互对齐
我有
#header {
width:100%;
height:160px;
}
作为主容器,因此容器适合页面的宽度(100%)
然后
.header-left {
width:33%;
display:inline-block;
}
.logo {
width:409px; /* width of the logo */
margin:10px auto 0 auto;
display:inline-block;
}
.header-right {
width:33%;
display:inline-block;
}
对于容器中的 3 个 div。
我需要在页面中心和其他 2 个 div 之间的 .logo div,然后是徽标 div 两侧的其他 2 个 div。
徽标 div 需要为 409px,因为这就是徽标的宽度。
出于某种原因,它只是全部显示在左侧,我不知道为什么