Answers for "emotion select all childrens"

CSS
0

emotion select all childrens

const myDiv = styled.div`
   width: 500px;
    > * {
     /* your style Goes here */
    }
    
    /*you could also target individual html tags*/
     > h1 {
     /* your style  Goes here */
    }
`;
Posted by: Guest on July-31-2021

Browse Popular Code Answers by Language