.container
.product
img(src="https://placehold.co/150")
strong.item
a(href="#").item-link some short link name
.price
span 123.00 €
a(href="#").tocart add to cart
.product
img(src="https://placehold.co/150")
strong.item
a(href="#").item-link some long link name with two lines
.price
span 123.00 €
a(href="#").tocart add to cart
.product
img(src="https://placehold.co/150")
strong.item
a(href="#").item-link some long link name with three lines - lorem ipsum dolor sit amet
.price
span 123.00 €
a(href="#").tocart add to cart
.product
img(src="https://placehold.co/150")
strong.item
a(href="#").item-link some very very long link name with three or very more lines - also more as three lorem ipsum dolor sit amet
.price
span 123.00 €
a(href="#").tocart add to cart
View Compiled
.container {
width: 80%;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
margin: 30px auto;
}
.product {
display: flex;
flex-flow: column nowrap;
width: 200px;
background-color: #f4f4f4;
padding: 20px;
margin: 10px;
}
img {
display: block;
margin-bottom: 15px;
}
a {
color: #333;
text-decoration: none;
}
.item {
min-height: 54px;
display: box;
box-orient:vertical;
line-clamp: 3;
overflow: hidden;
}
.item:hover {
overflow: visible;
display: block;
}
.price {
padding-top: 15px;
padding-bottom: 10px;
}
.price span {
font-size: 1.3em;
font-weight: bold;
}
.tocart {
background-color: #333;
color: #fff;
padding: 8px 12px;
display: block;
width: fit-content;
border-radius: 4px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.