I want to change the background color by changing the page width by conditionally writing, but to do this I need to be able to access the styles
If we wanted to write this code in JavaScript, it would be like this:
JavaScript
x
1
1
document.getElementById("number1").style.backgroundColor="red";
But what if we want to write this code with React and functional method?
Advertisement
Answer
I would suggest you to do that with css code by simply using media-query.
JavaScript
1
6
1
#number1 {
2
@media screen and (min-width: _yourBreakpoint_) {
3
background-color: "red";
4
}
5
}
6
Docs: https://www.w3schools.com/css/css3_mediaqueries_ex.asp
However If you want to dynamically change the style via react you can use the style
prop of the element. Supposing that the element is a div you can simply do:
JavaScript
1
2
1
<div style={{ backgroundColor: width > breakpoint && "red" }}></div>
2