CSS Responsive Layouts
Links: 116 CSS Index
Responsive Layouts¶
- Avoid fixed sizes like
width: 600px
.- If you want to set fixed sizes then use properties like
max-width: 600px
.- This means we cannot go greater than 600px.
- Example
- If you want to set fixed sizes then use properties like
- Don't set heights.
- If you want to set heights use properties like
min-height: 300px
to prevent overflow of content. - Example:
- If you want to set heights use properties like
- Try to write CSS keeping mobile first in mind.
- Generally it is easier to write the CSS for mobile because everything will mostly be a block element, there isn't enough space to use grid or flexbox or do any other fancy stuff.
- We can then use media queries to change the layout in case of large screen sizes.
- Custom classes
In general we first write CSS for the desktop version of the website and then use media queries for the mobile version but it should be the other way round.
When writing CSS for mobile first we will be using min-width
media queries to write CSS for larger desktops.
- Try to have at max two different media queries breakpoint.
- More than that and it would become very difficult to manage.
- Thinking about complex layouts
- Use relative units like
%
,em
,rem
instead of pixels for building more responsive designs. - Have a max and min width so that as the screen gets bigger or smaller the content never goes beyond a certain point.
- For responsive layouts you can have have a flex direction of row for larger screens and a flex direction of column for smaller screens.
- This works well if you only have 2 columns.
- We can also use grid instead of flexbox.
- Generally for mobile designs hamburger menus have a position of absolute.
Last updated: 2023-03-20