Skip to content

Instantly share code, notes, and snippets.

@charlesroper
Last active April 19, 2023 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlesroper/b449cd64d8bea873bcab74bd1feca2a6 to your computer and use it in GitHub Desktop.
Save charlesroper/b449cd64d8bea873bcab74bd1feca2a6 to your computer and use it in GitHub Desktop.
Using Bing to write a card system in HTML and CSS

Results: https://sly-platinum-concrete.glitch.me/


Me: I am building a responsive website that has a series of cards. The cards are arranged in a grid 3 columns wide. Each card has an image, some text, and a button at the bottom. Each card should be of equal height regardless of how much content there is. The buttons at the bottom should stick to the bottom of the card. When the screen is narrow (like on a smartphone), the cards should rearrange themselves into a single column. Please write HTML and CSS to handle this. The CSS should be modern and use CSS Grid. Try and use techniques from https://every-layout.dev/ if you can.


Bing: Sure, I can help you with that. Here is a possible HTML and CSS code to create a responsive website with cards using CSS Grid. I have used some techniques from https://every-layout.dev/ such as the cluster and the stack components. You can modify the code to suit your needs.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="image1.jpg" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="image2.jpg" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="image3.jpg" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="image4.jpg" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="image5.jpg" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="image6.jpg" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: Redo just the cards cluster using exactly the same HTML but include random sizes placeholders using a service like https://placehold.co/


Okay, I can do that. Here is the modified HTML and CSS code to create a responsive website with cards using random size placeholders from https://placehold.co/. I have kept the same CSS as before, but changed the image sources to use the placeholder service.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: This creates a grid of cards, but it doesn't limit the cards to a maximim of three per row. It fills the width of the viewport with as many cards as will fit. Do it again but limit to 3 columns wide.


Bing: Sure, I can do that. Here is the modified HTML and CSS code to create a responsive website with cards limited to 3 columns wide. I have changed the grid-template-columns property to use repeat(3, minmax(15rem, 1fr)) instead of repeat(auto-fit, minmax(15rem, 1fr)). This will create 3 columns of equal width that will shrink or grow depending on the viewport size. When the viewport is too narrow to fit 3 columns, the cards will rearrange themselves into a single column.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(15rem, 1fr)); /* Change this to limit to 3 columns */
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: That's better, but I need the grid to collapse into a single column on narrow screens. Choose an appropriate breakpoint based on data you can find about screen sizes.


Bing: Sure, I can do that. According to some sources¹³⁵, the most common screen sizes for responsive web design are 1920x1080, 1366x768, 1440x900, 1536x864 and 1024x768 for desktops; and 360x640, 375x667, 414x896, 375x812 and 320x568 for mobiles. Based on this data, I have added a media query to the CSS code to change the grid-template-columns property to use repeat(1, minmax(15rem, 1fr)) when the screen width is less than or equal to 768px. This will create a single column of cards that will fit the screen width. You can adjust the breakpoint value according to your preference.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(15rem, 1fr)); /* Change this to limit to 3 columns */
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}

/* Add a media query to change the grid layout for narrow screens */
@media screen and (max-width:768px) {
    .cluster {
        grid-template-columns: repeat(1, minmax(15rem,1fr)); /* Change this to create a single column */
    }
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Source: Conversation with Bing, 19/04/2023 (1) Common Screen Sizes for Responsive Web Design | Altamira. https://www.altamira.ai/blog/common-screen-sizes-for-responsive-web-design/. (2) Most recommended Screen Resolution for Web Design in 2021 - Comparium. https://comparium.app/blog/common-screen-resolutions/. (3) Website Dimensions: 15 Screen Resolutions to Design For | DesignRush. https://www.designrush.com/agency/web-development-companies/trends/website-dimensions. (4) Common Screen Sizes for Responsive Web Design (2023). https://cigica.com/article/common-screen-sizes-for-responsive-web-design. (5) Phone Screen Dimensions | Viewport Sizer. https://viewportsizer.com/phone-screen-dimensions/.Results: https://sly-platinum-concrete.glitch.me/


Me: I am building a responsive website that has a series of cards. The cards are arranged in a grid 3 columns wide. Each card has an image, some text, and a button at the bottom. Each card should be of equal height regardless of how much content there is. The buttons at the bottom should stick to the bottom of the card. When the screen is narrow (like on a smartphone), the cards should rearrange themselves into a single column. Please write HTML and CSS to handle this. The CSS should be modern and use CSS Grid. Try and use techniques from https://every-layout.dev/ if you can.


Bing: Sure, I can help you with that. Here is a possible HTML and CSS code to create a responsive website with cards using CSS Grid. I have used some techniques from https://every-layout.dev/ such as the cluster and the stack components. You can modify the code to suit your needs.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="image1.jpg" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="image2.jpg" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="image3.jpg" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="image4.jpg" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="image5.jpg" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="image6.jpg" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: Redo just the cards cluster using exactly the same HTML but include random sizes placeholders using a service like https://placehold.co/


Okay, I can do that. Here is the modified HTML and CSS code to create a responsive website with cards using random size placeholders from https://placehold.co/. I have kept the same CSS as before, but changed the image sources to use the placeholder service.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: This creates a grid of cards, but it doesn't limit the cards to a maximim of three per row. It fills the width of the viewport with as many cards as will fit. Do it again but limit to 3 columns wide.


Bing: Sure, I can do that. Here is the modified HTML and CSS code to create a responsive website with cards limited to 3 columns wide. I have changed the grid-template-columns property to use repeat(3, minmax(15rem, 1fr)) instead of repeat(auto-fit, minmax(15rem, 1fr)). This will create 3 columns of equal width that will shrink or grow depending on the viewport size. When the viewport is too narrow to fit 3 columns, the cards will rearrange themselves into a single column.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(15rem, 1fr)); /* Change this to limit to 3 columns */
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Me: That's better, but I need the grid to collapse into a single column on narrow screens. Choose an appropriate breakpoint based on data you can find about screen sizes.


Bing: Sure, I can do that. According to some sources¹³⁵, the most common screen sizes for responsive web design are 1920x1080, 1366x768, 1440x900, 1536x864 and 1024x768 for desktops; and 360x640, 375x667, 414x896, 375x812 and 320x568 for mobiles. Based on this data, I have added a media query to the CSS code to change the grid-template-columns property to use repeat(1, minmax(15rem, 1fr)) when the screen width is less than or equal to 768px. This will create a single column of cards that will fit the screen width. You can adjust the breakpoint value according to your preference.

<html>
<head>
<style>
/* Define a cluster component to arrange the cards in a grid */
.cluster {
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(15rem, 1fr)); /* Change this to limit to 3 columns */
  grid-gap: var(--gap);
  margin: calc(var(--gap) / -2);
}

.cluster > * {
  margin: calc(var(--gap) / 2);
}

/* Define a stack component to arrange the card content in a column */
.stack {
  --space: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack > * + * {
  margin-top: var(--space);
}

/* Define some styles for the card elements */
.card {
  border: 1px solid gray;
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-text {
  font-size: 1rem;
}

.card-button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem;
}

/* Add a media query to change the grid layout for narrow screens */
@media screen and (max-width:768px) {
    .cluster {
        grid-template-columns: repeat(1, minmax(15rem,1fr)); /* Change this to create a single column */
    }
}
</style>
</head>
<body>
<div class="cluster">
<!-- Card one -->
<div class="card stack">
<img src="https://placehold.co/300x200" alt="Image one" class="card-image">
<p class="card-text">This is some text for card one.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card two -->
<div class="card stack">
<img src="https://placehold.co/400x300" alt="Image two" class="card-image">
<p class="card-text">This is some text for card two.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card three -->
<div class="card stack">
<img src="https://placehold.co/500x400" alt="Image three" class="card-image">
<p class="card-text">This is some text for card three.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card four -->
<div class="card stack">
<img src="https://placehold.co/600x500" alt="Image four" class="card-image">
<p class="card-text">This is some text for card four.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card five -->
<div class="card stack">
<img src="https://placehold.co/700x600" alt="Image five" class="card-image">
<p class="card-text">This is some text for card five.</p>
<button class="card-button">Click me</button>
</div>
<!-- Card six -->
<div class="card stack">
<img src="https://placehold.co/800x700" alt="Image six" class="card-image">
<p class="card-text">This is some text for card six.</p>
<button class="card-button">Click me</button>
</div>
</div>
</body>
</html>

Source: Conversation with Bing, 19/04/2023

(1) Common Screen Sizes for Responsive Web Design | Altamira. https://www.altamira.ai/blog/common-screen-sizes-for-responsive-web-design/.

(2) Most recommended Screen Resolution for Web Design in 2021 - Comparium. https://comparium.app/blog/common-screen-resolutions/.

(3) Website Dimensions: 15 Screen Resolutions to Design For | DesignRush. https://www.designrush.com/agency/web-development-companies/trends/website-dimensions.

(4) Common Screen Sizes for Responsive Web Design (2023). https://cigica.com/article/common-screen-sizes-for-responsive-web-design.

(5) Phone Screen Dimensions | Viewport Sizer. https://viewportsizer.com/phone-screen-dimensions/.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment