Wednesday, April 22, 2026

Inline styles in React in jsx

 The attribute declaration and naming changes in jsx. 


HTML : 

<table style="border-collapse : collapse" > </table>


JSX: 

<table style={{ borderCollapse : "collapse" }} > </table>

No comments:

Post a Comment

Inline styles in React in jsx

 The attribute declaration and naming changes in jsx.  HTML :  <table style="border-collapse : collapse" > </table> JS...