CSS class selector styles not being applied in React Project

前端 未结 4 2045
鱼传尺愫
鱼传尺愫 2021-01-13 07:52

Working on a React project using Webpack. Adding some styles in style.css and importing into component with import style from \'./style.css\';. Elements without

4条回答
  •  野的像风
    2021-01-13 08:12

    If you're like me and use the style attribute for styling then afterwards move them into proper classes in .css files (and wonder why it doesn't work), remember to remove the JSX string format,

    height: "100px"
    

    is not the same as

    height: 100px
    

提交回复
热议问题