Responsive Web Design
Responsive web design is an approach to designing websites that makes them adapt to different screen sizes and devices. This is achieved by using flexible layouts, media queries, and other techniques to adjust the content and layout of the website based on the size of the screen it's being viewed on. Here's an example of using CSS media queries to adjust the layout of a website:
/* Styles for desktop screens */
.container {
display: flex;
justify-content: space-between;
}
/* Styles for tablet screens */
@media (max-width: 768px) {
.container {
display: block;
}
.sidebar {
display: none;
}
}
/* Styles for mobile screens */
@media (max-width: 480px) {
.container {
padding: 0 10px;
}
.header {
font-size: 24px;
}
}
In this code, we're using CSS media queries to apply different styles to the website based on the size of the screen it's being viewed on. We're using the max-width property to specify the maximum width of the screen, and we're adjusting the layout and styles of the website accordingly.
No comments:
Post a Comment