CSS
我正在这个网站上工作,并且我有一个相当大的 .css 文档。由于某种原因,我无法让这些列表项具有 0px 以外的任何内容的填充或边距。
我不知道它可能是从哪里继承的,也不知道为什么我的写作
{
margin: 5px;
padding: 5px;
}
没有任何作用!
这是站点,我指的是一个非常难看的、亮绿色的元素,其类为“.wiffleMainNav ul”李。”
CSS 规则位于链接样式表的底部。
非常感谢!
-阿扎
I am working on this site, and I have a pretty large .css document. For some reason I cant get these list items to have a padding or margin of anything other than 0px.
I have no idea where it might be inheriting this from, and why me writing
{
margin: 5px;
padding: 5px;
}
does nothing!
Here is the site, im referring to the element in a really ugly, bright green, with the class of ".wiffleMainNav ul li."
The CSS rule is at the bottom of the linked styles sheet.
Thanks so much!
-Aza
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的定义中有一个逗号。
更改此
为此
You have a comma in your definition.
Change this
To this
填充行末尾有一个逗号:
You have a comma at the end of the padding line:
你的CSS使用这个:
.wiffleMainNav ul li {
显示:块;
浮动:向左;
内边距:5px,
边距:0 像素 2 像素;
背景:绿色;
请
注意“padding: 5px”后面的逗号而不是分号。
Your css uses this:
.wiffleMainNav ul li {
display: block;
float: left;
padding: 5px,
margin: 0px 2px;
background: green;
}
Note the Comma after "padding: 5px" instead of semi-colon.