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

Linear Regression

Linear Regression is a mathematical method used to predict the value of a continuous target variable based on one or more input features. ...