📜  情感选择所有孩子 - CSS代码示例

📅  最后修改于: 2022-03-11 14:48:00.031000             🧑  作者: Mango

代码示例1
const myDiv = styled.div`
   width: 500px;
    > * {
     /* your style Goes here */
    }
    
    /*you could also target individual html tags*/
     > h1 {
     /* your style  Goes here */
    }
`;