0
I have a link with a text that is normal when displayed on the pc, however, very large for mobile phones (where I would use only one acronym). I need a way to change the text according to the display size. I’ve tried to know how to write texts with css, because this way just use media queries to display only the css I need in each screen size, but I read that write texts with:
:before {
content: "- ";
}
is not recommended. Please help me, the website I’m developing is this one,I want to modify the "committees" tab. As it is the first site I’m creating, n know mta thing (including js),so it has to do this only with bootstrap, css and html?
The boostrap has classes that you can use to show or hide content according to resolution, see that one reply.
– Pedro Camara Junior
And you don’t need to write text by CSS for this, just set the size using media query for the class. Ex: @media(max-width: 900px){ . class{ font-size: 10px; } }
– Rafael Augusto
Thanks a lot @Pedrocamarajunior was that same that I pracisava
– Felipe Marra
thanks to everyone who helped
– Felipe Marra