How can I make a text field in my HTML
be hidden when the user is viewing the phone and appears when he or she is viewing from the PC?
How can I make a text field in my HTML
be hidden when the user is viewing the phone and appears when he or she is viewing from the PC?
In your case, use the hidden-xs
classes to hide something in mobile resolution and visible-xs
to show only in mobile resolution.
<div class="hidden-xs">
Elemento oculto para mobile
</div>
<div class="visible-xs">
Elemento visível para mobile e oculto nas demais resoluções
</div>
lg
- Large Devices (desktops, && = 1200px ) md
- Medium Devices (desktops, && = 992px &