
jas0n
7,089 Pointsmost of my code didnt go inside media queries
I'm struggling i just cant understand what goes inside a media query i just put all my code outside.
1 Answer

Florin Dumitrasc
7,733 PointsIn a media query you put code that applies only when the media query’s condition is accomplished. Ex: if the media query condition is “min 756px”, then the code inside runs when the window’s (browser) width reaches that 756px width. Else, the code inside media query is ignored.