Change Password

How do you apply styles for landscape and portrait orientations of a device?
@media (orientation: landscape) { ... } and @media (orientation: portrait) { ... }
@media screen and (orientation: landscape) { ... }
@media only screen and (orientation: portrait) { ... }
Both A and B are correct