我正在尝试建立一个网站。我在菜单栏上遇到问题...在safari和chrome中工作正常但在Firefox上我看到菜单项中有一个白色的间隙。请查看随附的屏幕截图
这是我的css代码,我正在使用它:
.menu a {
display:block;
padding:.7em 2em;
background:#333;
color:#ddd;
text-decoration:none;
transition:all .3 ease;
}
请帮助,我尝试了很多,也搜索了一些东西,但无法理解。
答案 0 :(得分:0)
将.menu a
的边距和边框设置为0
。
答案 1 :(得分:0)
我猜猜锚容器是列表项(li)元素?如果是这样,您是否从这些元素中删除了边距和填充?
答案 2 :(得分:0)
我认为您需要的是一个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;
}
从中删除您不需要的元素,例如abbr
或acronym
。此代码被抓取from here ..
答案 3 :(得分:0)
如果你的菜单是这样的:
<ul>
<li>...</li>
<li>...</li>
</ul>
其中li是内联块,然后像这样写:
<ul>
<li>...</li><li>...</li>
</ul>
显示内联块元素,它们之间有间隙。编写HTML元素并且它们之间没有间隙使它消失。
还有一些CSS修复,但HTML“修复”是最可靠的。
答案 4 :(得分:0)
为什么不尝试使用float:
float:left;
display:block;
在mr.itmitica的示例中使用标记<li>
中的标记。
这将强制菜单进入一个行/块。