Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

hidden any element in mobile view and show in medium view tailwindcss

I need to hide a element in the mobile view and show to the same element in medium view.

I tried this,

<p classname="hidden md:visible">Hello</p>

But doesn’t seem to work

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You should use md:block instead md:visible

<p class="hidden md:block">Text to hide on small screens</p>

But if you want to use visible you should use invisible instead of hidden.

<p class="invisible md:visible">Text to hide on small screns</p>

You can check the difference here: https://www.thoughtco.com/display-none-vs-visibility-hidden-3466884

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading