嗨,我遇到了一个绝对愚蠢的问题。我目前正在设计一个带有中心的网站,其中包括两个元素,一个徽标和一个导航图标。即使网站因分辨率低或移动设备而调整大小,这两件事之间也应该有一个空间。
但它们不断重叠!我不知道我能做什么......这是当前的标记:
<div id="navContainer">
<div id="topNav">
<div id="logo"><img src="images/logo.png"/> </div>
<div id="mobileNav"><a href="#" ><img id="hamburger" src="images/navIcon.png"></a></div>
</div>
及其样式:
#navContainer {margin:0 auto;}
#navContainer:hover{background: rgba(255,255,255,0.2);cursor: pointer; width:100%;}
#topNav{width:50%; margin:0 auto;}
#logo{text-align:left; min-width:250px;}
#mobileNav{text-align:right; position:relative; bottom:50px; }
我的目标是让导航像这样工作:http ://www.teehanlax.com/