Answers for "css nested class"

CSS
0

css nested class

.class1{
	// class1 styles
    display: flex;
    flex-direction: column;
    width: 90%;
    .class2{
    	//class2 styles
        display: flex;
        flex-direction: row;
        width: 30%;
        align-items: center;
        justify-content: center;
    }
}
Posted by: Guest on March-21-2022

Browse Popular Code Answers by Language