CSS Pointer how to make Div Disappear in HTML Flashcards

1
Q

https://stackoverflow.com/questions/37313262/making-div-disappear-on-mobile

A
@media screen and (max-width:767px) {
       .page-title {
            width:0 !important;
            height:0 !important;
            display:none !important;
		}
	}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly