ナビゲーションバーには、中央に表示するロゴと、左に浮かべるメニューボタンの画像(3行)があります。 Iveは左に浮かぶメニューボタンを手に入れましたが、ロゴをNavbarの正確な中心に置くようには見えません。 Iveはdivの両方にputtinを入れてdiv幅を50%に設定してから、画像を左に浮かせて、中央に置いて運がないようにしました。navbarの中の他の要素もそうであるとき、navbarにロゴを集中させるには?
HTML:
<div id="resp-navbar">
<div id="resp-nav-contents">
<img id="exp-menu-img" src="3lines.png">
<img id="resp-logo" src="MSLOGO.jpg">
</div>
</div>
CSS:
#resp-navbar{
height: 15%;
text-align: center;
width: 100%;
display: inline-block;
position: fixed;
z-index:51;
background-color: white;
border-bottom: solid;
border-width: 1px;
border-color: #afafaf;
}
#resp-nav-contents{
min-width: 300px;
}
#exp-menu-img{
height: 30%;
position: absolute;
left: 2%;
top: 50%;
transform: translateY(-50%);
opacity: 0.4;
cursor: pointer;
}
#resp-logo{
height: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
display: inline;
}
にありがとうございました!!完璧に働いた! – AbuN2286