- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚开始为一个 friend 设计我的第一个网页设计元素,我正在尝试制作一个响应式页面。当我将固定导航链接项的边距从像素更改为百分比时,它会导致元素在悬停在任何导航项上时掉落。HTML
<header>
<div id="fixedLinks">
<a href="#">About</a>
<a href="#">Resume</a>
<a href="#">Contact</a>
</div>
<div id="socialMedia">
<a href="http://facebook.com"><img class="socialIcons" id="facebook" src="1438210007_social_facebook_box_blue.png"/></a>
<a href="http://twitter.com"><img class="socialIcons" id="twitter" src="1438210015_social_twitter_box_blue.png"></a>
<a href=http://linkedin.com><img class="socialIcons" id="linkedIn" src="1438210011_social_linkedin_box_blue.png"/></a>
</div>
</header>
CSS
header{
z-index: 1;
position:fixed;
width:100%;
height: 30px;
background-color:#2F2F2F;
box-shadow: 0rem 0rem 1rem .1rem black;
}
#fixedLinks{
float:left;
font-size:1.5rem;
font-family:EB Garamond;
margin-left:.75%;
}
#fixedLinks a{
color:#9B9B9B;
text-decoration:none;
display: inline-block;
padding-left:1%;
padding-right:1%;
}
#fixedLinks a:hover{
border-left: solid 1px white;
}
就像我说的,只有当我使用 1% 的内边距而不是 10px 时才会这样。
最佳答案
您没有考虑边框占用的空间。
你要从
Home to | Home
你需要在你的填充中考虑到这一点,我用过它并且它对我有用。
#fixedLinks a{
color:#9B9B9B;
text-decoration:none;
display: inline-block;
padding-left:.9%;
padding-right:.9%;
}
这是一个jsfiddle
关于html - 悬停效果导致 float 导航项在填充百分比而不是像素后从其包含元素中消失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31730962/
我正在使用一个带有四个 JMenuItems(名为 Inc、Dec、Reset、Quit)的 JMenu(名为 Count)。当我单击任何菜单项时,我希望它在 JTextArea 中显示整数。例如,每
我有一个列表,其中的元素很少 .passengerBaggageList>ul li:first-child { list-style-type: none!important; list-s
我有一个 TreeView ,具有多个嵌套级别。例如,Treeview 的根节点是 A,那么在 A 中有一个项 B,在 B 中有另一个项 C,如 A-->B-->C。例如,如果B在这个treeview
给定 onTouch 在 ListView 对象上获得的 y 坐标,您如何根据 motionEvent.getY 确定触摸项目的位置/索引()? 很遗憾,我不能使用 onItemClickListen
我有一个包含大量代码的箱子,所以我将其拆分为多个文件/模块。然而,一些模块有内部不安全的东西(例如原始指针),我需要向不同的模块公开,但我不想暴露给我的 crate 的用户。我该怎么做? 我能想到的唯
我有一个包含大量代码的箱子,所以我将其拆分为多个文件/模块。然而,一些模块有内部不安全的东西(例如原始指针),我需要向不同的模块公开,但我不想暴露给我的 crate 的用户。我该怎么做? 我能想到的唯
我是一名优秀的程序员,十分优秀!