Is it possible to reference a further parent than just the one above?

前端 未结 3 1347
梦如初夏
梦如初夏 2020-12-02 01:52

I have the following sample code:

.level1 {
   // css

  .level2 {
  // css

     . level3 {
     // css
     color: red;
  }
}

And then

3条回答
  •  渐次进展
    2020-12-02 02:04

    A simple example:

     .child{
        background-color:red;
        .parent:hover &{
          background-color:blue;
        }
      }
    

    goes into

    .child {
      background-color: red;
    }
    .parent:hover .child {
      background-color: blue;
    }
    

    http://sassmeister.com/gist/e994e056d3cc3b342e2c

提交回复
热议问题