HTML-CSS-Class-Completion icon indicating copy to clipboard operation
HTML-CSS-Class-Completion copied to clipboard

Parsing css files containing nested elements not working

Open fen-git opened this issue 1 year ago • 0 comments

Extension do not parse css files containing nested elements Tested it with these few lines. Parsing is successful when nested elements are removed

.testclass{
    display: flex;
    flex-wrap: wrap;
}

.nestParent{
    position:relative;
    width:100%;

    .nestChild{
        position: absolute;
        top:0;
        left: 0;
    }
}

fen-git avatar Jan 14 '24 03:01 fen-git