I am new to using media queries and searched for this on google but i just found websites referring to this but no description of what they actually mean.
What is the difference between this:
@media screen and (max-width: 767px),
screen and (max-device-width: 767px)
And:
@media screen and (max-width: 767px)
What is the difference between these two? Does the first one target page content width and device width or all orientations (horizontal or vertical)? I am confused here.