CSS
  • 的内边距和边距根本不工作
  • 发布于 2024-09-14 10:05:14 字数 353 浏览 7 评论 0原文

    我正在这个网站上工作,并且我有一个相当大的 .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 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(3

    与君绝 2024-09-21 10:05:14

    你的定义中有一个逗号。

    更改此

    .wiffleMainNav ul li {
        display: block;
        float: left;
        padding: 5px, /* PROBLEM! :) */
        margin: 0px 2px;
        background: green;
    }
    

    为此

    .wiffleMainNav ul li {
        display: block;
        float: left;
        padding: 5px; /* FIXED */
        margin: 0px 2px;
        background: green;
    }
    

    You have a comma in your definition.

    Change this

    .wiffleMainNav ul li {
        display: block;
        float: left;
        padding: 5px, /* PROBLEM! :) */
        margin: 0px 2px;
        background: green;
    }
    

    To this

    .wiffleMainNav ul li {
        display: block;
        float: left;
        padding: 5px; /* FIXED */
        margin: 0px 2px;
        background: green;
    }
    
    淡紫姑娘! 2024-09-21 10:05:14

    填充行末尾有一个逗号:

    padding: 5px,
    margin: 0px 2px;
    

    You have a comma at the end of the padding line:

    padding: 5px,
    margin: 0px 2px;
    
    野味少女 2024-09-21 10:05:14

    你的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.

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文