Hvordan oprette: Produktkort

Lær hvordan du bruger CSS til at oprette produktkort.

Jeans
Tailored Jeans

$19.99

Visse tekster om bukserne. Super smalle og komfortable lorem ipsum lorem jeansum. Lorem jeamsun denim lorem jeansum.

Try it yourself

Hvordan oprette produktkort

Første trin - Tilføj HTML:

<div class="card">
  <img src="jeans3.jpg" alt="Jeans" style="width:100%">
  <h1>Tailored Jeans</h1>
  <p class="price">$19.99</p>
  <p>Visse tekster om bukserne..</p>
  <p><button>Tilføj til kurv</button></p>
</div>

Andet trin - Tilføj CSS:

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
{}
.price {
  color: grey;
  font-size: 22px;
{}
.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
{}
.card button:hover {
  opacity: 0.7;
{}

Try it yourself