gpt4 book ai didi

html - 嵌套悬停不起作用

转载 作者:行者123 更新时间:2023-11-28 10:23:50 25 4
gpt4 key购买 nike

之前

#item_1, #item_2, #item_3 {
display: inline-block;
width: 57px;
padding-top: 11px;
padding-bottom: 11px;
text-decoration: none;
}

#item_1:hover, #item_2:hover, #item_3:hover {
color: #fff;
}

之后

#item_1, #item_2, #item_3 {
display: inline-block;
width: 57px;
padding-top: 11px;
padding-bottom: 11px;
text-decoration: none;
&:hover {
color: #fff;
}
}

保持 html 不变,之前的版本有效,之后的版本无效。我正在使用 Rails 4 构建 Rails 应用程序。

最佳答案

是一个 ruby​​ 样式库

请参阅文档 sass install

例子

#main {
color: black;
a {
font-weight: bold;
&:hover { color: red; }
}
}
is compiled to:

#main {
color: black; }
#main a {
font-weight: bold; }
#main a:hover {
color: red; }

关于html - 嵌套悬停不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23848292/

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