Responsive design ensures your website works on any screen—mobile, tablet, or desktop. This post is a collection of practical CSS patterns and layout techniques used in modern front-end development. Save it as your cheat sheet for building responsive, flexible, and accessible interfaces.
Defines the width and zoom level of the viewport to match the device’s screen size:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Use fluid units (%
, max-width
) for elements to scale naturally across screen sizes:
.logo { width: 100px; } /* Fixed width logo */
.box { width: 100%; } /* Fills the full container width */
.hero { max-width: 100%; } /* Scales down but never overflows */
Ensure touch targets like buttons or links are easy to tap on mobile devices:
nav, a, button {
min-width: 48px;
min-height: 48px;
}
Use padding for touch areas when you need variable sizing:
nav, a, button {
padding: 1.5em;
}
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" media="screen and (min-width: 500px)" href="over500.css">
<style>
block:@media screen and (min-width: 500px) {
body { background-color: green; }
}
@import
for performance, though it’s valid CSS:@import url("over500.css") only screen and (min-width: 500px);
body { background-color: green; }
@media (max-width: 400px) {
body { background-color: red; }
}
@media (min-width: 600px) {
body { background-color: blue; }
}
Use flexbox to build flexible layouts that adjust naturally as screen sizes change.
.container {
display: flex;
width: 100%;
}
.box { width: 150px; }
.container {
display: flex;
flex-wrap: wrap;
}
.red { order: 1; }
.green { order: 2; }
.container {
display: flex;
flex-wrap: wrap;
}
.box {
width: 100%;
height: 100px;
text-align: center;
}
.one { width: 100%; order: 1; }
.two { width: 50%; order: 2; }
.three { width: 50%; order: 3; }
Stacks columns vertically on smaller screens, and repositions them horizontally on larger screens:
.container { display: flex; flex-wrap: wrap; }
.box { width: 100%; }
@media (min-width: 450px) {
.dark_blue { width: 25%; }
.light_blue { width: 75%; }
}
@media (min-width: 550px) {
.dark_blue, .green { width: 25%; }
}
Columns start stacked and gradually distribute fluidly across larger screen widths:
@media (min-width: 450px) {
.light_blue, .green { width: 50%; }
}
@media (min-width: 550px) {
.dark_blue, .light_blue { width: 50%; }
.green, .red, .orange { width: 33.33%; }
}
@media (min-width: 700px) {
.container {
width: 700px;
margin: 0 auto;
}
}
Shifts and reorders content blocks at larger breakpoints to emphasize priority content:
@media (min-width: 600px) {
.dark_blue { width: 25%; order: 1; }
.red { width: 25%; order: -1; }
#container2 { width: 50%; }
}
Slides in from the side on mobile, while showing inline on desktop:
nav {
transform: translate(-300px, 0);
transition: transform 0.3s ease;
}
nav.open {
transform: translate(0, 0);
}
menu.addEventListener('click', function(e) {
drawer.classList.toggle('open');
e.stopPropagation();
});
@media (min-width: 600px){
.inning { display: none; }
}
@media (max-width: 500px){
table, thead, tbody, th, td, tr {
display: block;
}
td:before {
content: attr(data-th);
font-weight: bold;
}
}
.contained_table {
width: 100%;
overflow-x: auto;
}
Use scalable font sizes with appropriate line-height for legibility:
.smallFonts { font-size: 14px; line-height: 1.2; }
.goodFonts { font-size: 16px; line-height: 1.2; }
.biggerFonts { font-size: 18px; line-height: 1.25; }
img {
width: 50%;
margin-right: 10px;
}
img:last-of-type {
margin-right: 0;
}
srcset
and sizes
:<img
src="images/great_pic_800.jpg"
sizes="(max-width: 400px) 100vw, (min-width: 401px) 50vw"
srcset="images/great_pic_400.jpg 400w, images/great_pic_800.jpg 800w"
alt="great picture">
<img src="image_2x.jpg" srcset="image_2x.jpg 2x, image_1x.jpg 1x">
<picture>
:<picture>
<source media="(min-width: 1000px)" srcset="large.jpg">
<source media="(min-width: 500px)" srcset="medium.jpg">
<img src="small.jpg" alt="Responsive example">
</picture>
Use viewport-based units to size elements responsively:
100vh
= 100% of viewport height100vw
= 100% of viewport widthvmin
= smaller of width/heightvmax
= larger of width/heightbody {
background:
linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
linear-gradient(207deg, #151515 5px, transparent 5px) 10 5px,
linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%);
background-color: #131313;
background-size: 20px 20px;
}
image-set
:div {
background-image: image-set(
url(images/icon1x.png) 1x,
url(images/icon2x.png) 2x
);
}
Ensure proper character rendering:
<meta charset="UTF-8">
@import url(http://weloveiconfonts.com/api/?family=zocial);
[class*="zocial-"]:before {
font-family: 'zocial';
font-size: 24px;
}
<img src="data:image/svg+xml;base64,[data]">