Sass-父選擇器???自身選擇器
阿新 • • 發佈:2017-07-14
ext sas inside idt width hover amp lock col
父選擇器&
#outside{
width: 61.8%;
height: 200px;
background-color: grey;
}
.inside{
color: white;
background: purple;
border-radius: 5px;
font-size: 20px;
font-weight: bolder;
text-align: center;
display: block;
&:hover{
color: yellow;
}
}
但是編譯後是這樣的
#outside {
width: 61.8%;
height: 200px;
background-color: grey; }
.inside {
color: white;
background: purple;
border-radius: 5px;
font-size: 20px;
font-weight: bolder;
text-align: center;
display: block; }
.inside:hover {
color: yellow; }
說好的父選擇器呢?這只是個自身的選擇器啊
Sass-父選擇器???自身選擇器