diff options
-rw-r--r-- | posts/animated-card-tiles.md | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/posts/animated-card-tiles.md b/posts/animated-card-tiles.md index 617ada4..c709c14 100644 --- a/posts/animated-card-tiles.md +++ b/posts/animated-card-tiles.md @@ -20,17 +20,14 @@ For the base skeleton of these cards we only need: - the inner child element that will display on `:hover` - 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> - </div> +<pre><code><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></code></pre> 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. |