JSX - inline CSS style for JSX

0 votes
366 views
added Feb 3, 2020 in JSX by lcjr Lieutenant (12,460 points)
  1. // Instead of
  2. <div id="scroll-header" style="position:fixed; top:52px">
  3.  
  4. // use this
  5. <div id="scroll-header" style={{position: "fixed", top: "52px"}}>

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...