问题
I was searching for a way to set the default font-family for the entire react app but all results/packages point to react native instead. For react is there a way to default a global font setting without specifying font-family in every css? Thanks.
回答1:
If I understand your question correctly this should do:
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
font-family: 'Open Sans',serif;
}
来源:https://stackoverflow.com/questions/59306327/is-there-a-way-to-set-the-default-font-family-for-the-entire-react-app-without-s