所以,我已经开始为我的投资组合网站制定一些基础知识。我已经完成了导航栏,但现在在测试跨浏览器时,它会在导航下方显示几个像素的边距。这种情况发生在除Firefox之外的所有浏哪种方式让我感到困惑,因为这些元素都具有绝对的定位。
HTML:
<div id="topnav">
<ul>
<li><a href="index.html" id="current">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html" class="lastli">Contact Me</a></li>
</ul>
</div>
这个div位于一个容器内,容器宽800,边距20px,侧面自动。 填充和边距设置为0.“top:195”是将条形图定位在我的标题图像(800x195)下。另请注意:列表项目具有1x20背景渐变图像,设置为repeat-x。
CSS:
#topnav {
width:800px;
position:absolute;
top:194px;
height:20px;
}
#topnav ul {
list-style-type:none;
text-align:center;
height:20px;
margin:0;
padding:0;
}
#topnav ul li {
display:inline;
font-size:15px;
line-height:20px;
}
#topnav ul li a {
padding:0 10px;
position:relative;
border-left:1px solid white;
margin-left:-6px;
}
注意,我已尝试多次将高度设置为20px,但似乎没有任何效果。我也改变了字体,但没有用。 屏幕截图:http://imgur.com/a/DKkDy 顶部是Firefox(我希望它是),底部是Chrome。 这是一个JSFiddle:http://jsfiddle.net/SUmF7/
答案 0 :(得分:1)
您是否尝试过将CSS重置放在样式表中?
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
答案 1 :(得分:0)
您是否尝试过在容器div上设置位置样式?
答案 2 :(得分:0)
尝试将display: inline-block
添加到标签元素。 topnav li
和a
都设置为inline
元素,这意味着它们不会扩展到您已正确设置的维度。