使用 Emotion,您可以设置一些东西,例如以下 create-react-app 示例,以注入全局样式:
import React from 'react';
import ReactDOM from 'react-dom';
import { Global, css } from '@emotion/core'
const bodyFillColor = `rgb(218,236,236)`;
class App extends React.Component {
render() {
return(
<div>
<Global
styles={css`
body {
background: ${bodyFillColor};
margin: 0;
padding: 0;
min-height: '100vh';
max-width: '100vw';
}
`}
/>
<Global
styles={{
'body.noScroll': {
// Prevent scrolling; conditionally activate this
// in subcomponents when necessary ...
overflow: 'hidden',
},
}}
/>
</div>
);
}
}
ReactDOM.render(
<App />,
document.getElementById('root')
);
这显示了一个在主体上注入样式并为主体分配一个类的示例,该类可以在以后有条件地激活。
例如。
{this.state.activate && <Global styles={{`stylesetc`}}/>}
https://emotion.sh/docs/globals
选择
StyledComponents 使用 CSS-in-JS 方法,非常适合 React 应用程序。这是我过去直接从文档中使用的一种技术:
import { createGlobalStyle } from 'styled-components'
const GlobalStyle = createGlobalStyle`
body {
color: ${props => (props.whiteColor ? 'white' : 'black')};
}
`
// later in your app
<React.Fragment>
<Navigation /> {/* example of other top-level stuff */}
<GlobalStyle whiteColor />
</React.Fragment>