当窗口大小较小的元素相互重叠时?
我设计了一个网站,现在有点困惑。
如果您查看网站:
http://www.noxinnovations.com/portfolio/charidimos/
如果您更改窗口的大小,您会注意到导航与徽标/标题重叠。
无论如何要改变这个吗?我实际上想做的是让窗口出现滚动条(如果可能的话)。
有什么想法吗?
谢谢你:-D。
I have designed a website and am a little bit stumped right now.
If you view the website at:
http://www.noxinnovations.com/portfolio/charidimos/
If you change the size of the window you will notice the Navigation overlaps the logo/header.
Anyway to change this? What I want to do virtually is to make the window have a scroll bar appear if that is possible.
Any ideas?
Thank you :-D.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您的
#header
元素中的width: 100%;
导致了奇怪的溢出行为。将#logo
和#navigation
元素放置在另一个div
中,该元素具有固定的高度和宽度,位于#header< /code>,然后给你的
#header
属性overflow:hidden;
,这应该可以解决你的问题。It's your
width: 100%;
in your#header
element that's causing your strange overflow behavior. Place your#logo
and#navigation
elements inside of anotherdiv
with a fixed height and width that sits inside of the#header
, then give your#header
the propertyoverflow: hidden;
and that should fix you right up.如果您希望导航不重叠,您可以执行以下操作
If you want your navigation not to overlap, you can do the following