Change Password

Which media query is correct for applying styles to devices with a width of at least 768px?
@media (min-width: 768px) { ... }
@media only screen (width >= 768px) { ... }
@media screen and (width: 768px) { ... }
@media (width > 768px) { ... }