summaryrefslogtreecommitdiff
path: root/posts/animated-card-tiles.md
diff options
context:
space:
mode:
authorbt <bt@web>2023-11-28 10:08:14 -0500
committerIkiWiki <ikiwiki.info>2023-11-28 10:08:14 -0500
commit8db22d0edbe5ada8fafd6e73ddadcdcc6993c50e (patch)
tree255bed3907787f45846a8327412e243e6c6b0926 /posts/animated-card-tiles.md
parent50f9ee3947e1dc081a605318f7066b9758e87b7f (diff)
Diffstat (limited to 'posts/animated-card-tiles.md')
-rw-r--r--posts/animated-card-tiles.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/posts/animated-card-tiles.md b/posts/animated-card-tiles.md
index b3c01ee..4d1c2e7 100644
--- a/posts/animated-card-tiles.md
+++ b/posts/animated-card-tiles.md
@@ -21,16 +21,16 @@ For the base skeleton of these cards we only need:
- proper `h4` and `p` tags inside that child element
-```
-<div class="card-tiles-container">
- <div class="card-tile">
- <div class="text-content">
- <h4>Card Title</h4>
- <p>Inner card content text</p>
+
+ <div class="card-tiles-container">
+ <div class="card-tile">
+ <div class="text-content">
+ <h4>Card Title</h4>
+ <p>Inner card content text</p>
+ </div>
+ </div>
</div>
- </div>
-</div>
-```
+
That's all that is needed - for now. We will be returning to this code shortly to add some extra classes to make our lives easier.