Search
 
SCRIPT & CODE EXAMPLE
 

CSS

card with css grid

Here is an example from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_cards 
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {
  padding: 2px 16px;
}
</style>
</head>
<body>

<h2>Card</h2>

<div class="card">
  <img src="img_avatar.png" alt="Avatar" style="width:100%">
  <div class="container">
    <h4><b>John Doe</b></h4> 
    <p>Architect & Engineer</p> 
  </div>
</div>

</body>
</html> 
Comment

CSS Card Grid Display

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
  grid-gap: 1em;
}
Comment

CSS Card Grid Display

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
}
.cards .card {
  flex-basis: 15em;
  flex-grow: 1;
}
Comment

PREVIOUS NEXT
Code Example
Css :: execution timeout expired the timeout 
Css :: nativescript hr 
Css :: id ends with css 
Css :: card flip css 
Css :: make text available only to screen reader 
Css :: sass scale color 
Css :: font color css 
Css :: text background in css 
Css :: css multiple classes 
Css :: calculator 
Css :: calculate using n nth-child 
Css :: how to insert icons pseudo content 
Css :: how to saturate colors in css 
Css :: how to comment in css 
Css :: change hover color link in wordpress 
Css :: background color for a page in css 
Css :: filter array by keyword 
Css :: css ripple effect 
Css :: safari version 10+ media query 
Css :: tel css 
Css :: transform element to the left 
Css :: css play button on image 
Css :: css how to find all ids that end with something 
Css :: using tinymce with tailwind css 
Css :: font size clamp generator 
Css :: screen sizes for css media 
Css :: sub menu disappears on hover css 
Css :: button with background image and text html css 
Css :: How to write text in middle of straight line in css 
Css :: Bootstrap open modal move page content 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =