Is this css written wrong?

-sharpnotebook > * {
    float: left;
    display: flex;
    flex-direction: column;
    height: 100%;
  
    > * {
      flex: auto 0 0;
    }
  }

the second paragraph css > * {flex:auto 00;} is nested in the first paragraph of code. Is that wrong?

May.19,2022

this is not css
later css will support this type of writing


this is sass

Menu