父选择器&
#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; }
说好的父选择器呢?这只是个自身的选择器啊
时间: 2024-10-06 16:04:57