标签:height div span log back center amp sas font
父选择器&
#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; }
说好的父选择器呢?这只是个自身的选择器啊
标签:height div span log back center amp sas font
原文地址:http://www.cnblogs.com/jiaoxuanwen/p/7171665.html