## Default Media Queries
-Foundation for Sites has three core breakpoint ranges.
+Foundation for Sites has three core breakpoints:
- **Small:** any screen.
- **Medium:** any screen 640 pixels or wider.
</div>
```
+If you're using the CSS version of Foundation, use these media queries to imitate the three core breakpoints:
+
+```css
+/* Small only */
+@media screen and (max-width: 39.9375em) {}
+
+/* Medium and up */
+@media screen and (min-width: 40em) {}
+
+/* Medium only */
+@media screen and (min-width: 40em) and (max-width: 63.9375em) {}
+
+/* Large and up */
+@media screen and (min-width: 64em) {}
+
+/* Large only */
+@media screen and (min-width: 64em) and (max-width: 74.9375em) {}
+```
+
---
## Changing the Breakpoints