Skip to content

Commit 365b720

Browse files
authored
New component flip-card
1 parent de35c53 commit 365b720

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/css/design/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,21 @@ Styling for individual tags.
254254
```html
255255
<span class="tag">Tag</span>
256256
```
257+
258+
# flip-card
259+
Sure, a flip-card is basically an online card that displays information on both sides and allows the user to "flip" it to see the other side with more details or content. It's an interactive and engaging way to present information on websites and applications.
260+
261+
## Example:
262+
263+
```html
264+
<div class="flip-card">
265+
<div class="flip-card-inner">
266+
<div class="flip-card-front">
267+
Front Content
268+
</div>
269+
<div class="flip-card-back">
270+
Back Content
271+
</div>
272+
</div>
273+
</div>
274+
```

0 commit comments

Comments
 (0)