When using desktop mode, I require the navbar to have no background color. The code for my desktop navbar is:
<nav class="navbar navbar-expand-sm">
However, on small screen devices, I need two additional classes applied to the navbar:
I need to add navbar-light
and bg-light
.
What steps should I take to implement this using media queries?