我想这样做:
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
我应该如何使用样式化组件来做出反应?有新的createGlobalStyle API,但我不确定它如何处理星号?
答案 0 :(得分:1)
使用createGlobalStyle
创建新的后续组件。
import { createGlobalStyle } from 'styled-components';
const GlobalStyle = createGlobalStyle`
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
`;
export default GlobalStyle;
然后在App component
中导入并渲染上面的组件。