Css – Bolding text is not working in different devices
Is bolding text is affected by screen type? This is JSX in react: function App() { return ( // Problem Here <b className="info-text">Info:{" "}</b> ); } ReactDOM.render(<App />, document.getElementById("root")); .info-text { font-size: 14px; font-weight: bolder; line-height: 24px; color: #15366D; }…