gpt4 book ai didi

css - 如果分配了多个 css 类,如何以正确的方式更改上边距?

转载 作者:太空宇宙 更新时间:2023-11-03 22:08:58 25 4
gpt4 key购买 nike

我将这些类 menu second_menu menu_about_author 分配给 ul 所以 html 代码看起来像 <ul class="menu second_menu menu_about_author">我希望此 ul 具有与 menu 和 second_menu 相同的属性,然后我想将 menu_about_author 向下移动一点。

我是通过 .menu_about_author { margin-top:40px; } 这样做的但是没用

知道为什么 margin-top:40px; 被越过了吗?图片的链接是 [1]:http://img153.imageshack.us/img153/882/58daeef0c3c846e4a8d6321.png

alt text http://img153.imageshack.us/img153/882/58daeef0c3c846e4a8d6321.png

最佳答案

使用

.custom .menu.second_menu.menu_about_author { margin-top:40px; }

.custom .second_menu.menu_about_author { margin-top:40px; }

作为选择器

否则你的边距会被 second_menu 边距覆盖

可能也是

.custom .menu_about_author { margin-top:40px; }

如果此代码在 .custom .second_menu 之后将起作用

关于css - 如果分配了多个 css 类,如何以正确的方式更改上边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2833509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com