首页 > 代码库 > [TypeStyle] Load raw CSS in TypeStyle
[TypeStyle] Load raw CSS in TypeStyle
TypeStyle tries to be an all in one CSS in JS management solution so you can always fall back to raw CSS if you ever need to migrate old code quickly. This lesson will demonstrate how to use the cssRaw
function along with the real world use case of CSS resets e.g. normalize.css
.
import {cssRaw} from ‘typestyle‘;import * as React from ‘react‘;import * as ReactDOM from ‘react-dom‘;cssRaw(` body { font-size: 1.5em; font-weight: bold; background-color: black; color: gold }`);const App = () => ( <div> Hello World! </div>);ReactDOM.render( <App />, document.getElementById(‘root‘));
[TypeStyle] Load raw CSS in TypeStyle
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。