My website has a unique layout where certain text appears differently on desktop and mobile devices. Specifically, I have a simple text that looks like this on desktop:
Kolor : Niebieski
Rozmiar : S/M
However, I want it to appear like this on mobile:
Kolor : Niebieski Rozmiar : S/M
I attempted to use the following HTML code:
<a href="">Kolor : Niebieski<br> Rozmiar : S/M</a>
Additionally, I tried implementing the following CSS:
div br {
display: none;
}
Despite my efforts, the desired result was not achieved. Can anyone provide suggestions on how to achieve the desired outcome without altering the HTML structure?