CSS Hide Div sur mobile
/*I have set the width to 900 you can change it if you want*/
@media(max-width:900px) {
div{
visibility: hidden;
}
}
Cyber-Ninja
/*I have set the width to 900 you can change it if you want*/
@media(max-width:900px) {
div{
visibility: hidden;
}
}