博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
styled-components 全局样式定义,由injectGlobal改为createGlobalStyle
阅读量:5869 次
发布时间:2019-06-19

本文共 1660 字,大约阅读时间需要 5 分钟。

The injectGlobal API was removed and replaced by createGlobalStyle in styled-components v4. 

官方链接 

具体使用

1 import { createGlobalStyle } from 'styled-components'; 2  3 export const GlobalStyle = createGlobalStyle` 4   html, body, div, span, applet, object, iframe, 5   h1, h2, h3, h4, h5, h6, p, blockquote, pre, 6   a, abbr, acronym, address, big, cite, code, 7   del, dfn, em, img, ins, kbd, q, s, samp, 8   small, strike, strong, sub, sup, tt, var, 9   b, u, i, center,10   dl, dt, dd, ol, ul, li,11   fieldset, form, label, legend,12   table, caption, tbody, tfoot, thead, tr, th, td,13   article, aside, canvas, details, embed, 14   figure, figcaption, footer, header, hgroup, 15   menu, nav, output, ruby, section, summary,16   time, mark, audio, video {17     margin: 0;18     padding: 0;19     border: 0;20     font-size: 100%;21     font: inherit;22     vertical-align: baseline;23   }24   /* HTML5 display-role reset for older browsers */25   article, aside, details, figcaption, figure, 26   footer, header, hgroup, menu, nav, section {27     display: block;28   }29   body {30     line-height: 1;31   }32   ol, ul {33     list-style: none;34   }35   blockquote, q {36     quotes: none;37   }38   blockquote:before, blockquote:after,39   q:before, q:after {40     content: '';41     content: none;42   }43   table {44     border-collapse: collapse;45     border-spacing: 0;46   }47 `
View Code

在App.js中导入

1 import { GlobalStyle } from './style.js'; 2 import React, { Fragment } from 'react'; 3 function App() { 4   return ( 5     
6
7
8
9 );10 }

参考链接:

转载于:https://www.cnblogs.com/herewego/p/10881734.html

你可能感兴趣的文章
request.getInputStream()乱码处理方法
查看>>
golang更改自动重新编译gowatch
查看>>
lua 数据以table表的形式存储
查看>>
网站建设表单下拉选框及查询下拉选框
查看>>
linux开源安装之四步
查看>>
命令行打包android工程
查看>>
Git
查看>>
Android-onInterceptTouchEvent()和onTouchEvent()
查看>>
linux下 采用freetds 连接sqlserver2008
查看>>
Android有效解决加载大图片时内存溢出的问题
查看>>
Java(Android)线程池
查看>>
Guava学习笔记-简化List分组成Map<String,List>的实现
查看>>
Banyan_2015 c
查看>>
程序问题解决流程思考
查看>>
test
查看>>
按钮上一个下一个点击-dom对象显示-代码简单-i累加给eq获取
查看>>
网页分享插件
查看>>
让eclipse有jquery自动提示
查看>>
clang 3.9.1 centos 7 编译安装
查看>>
JVM的持久代——何去何从?
查看>>