Today’s notes is for the Section 5, Lecture 39-41 of this udemy course.
How to have a flipping card
1 | <div class="card"> |
1 | .card { |
How to clip & blend the background image
Clip background image
1 | .card__picture { |
Blend background image
1 | .card__picture { |
How to set the decoration for span break
When an inline element got broke into several different lines, how to keep the decoration consistent for all the lines? For example padding distance.1
2
3
4.card__heading--span {
-webkit-box-decoration-break: clone; // keep it consistent
box-decoration-break: clone;
}