1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/contents/drop-cap.md
2022-09-21 14:31:37 +07:00

529 B

layout, title, description, keywords
layout title description keywords
layouts/post.njk Drop cap Create a drop cap with CSS css drop cap, css :first-letter

HTML

<div class="drop-cap">
    ...
</div>

CSS

.drop-cap:first-letter {
    /* Display at the left */
    float: left;
    line-height: 1;

    /* Spacing */
    margin: 0 0.5rem 0 0;
    padding: 0 0.5rem;

    /* Optional */
    border: 2px solid #d1d5db;
    font-size: 2rem;
    font-weight: 700;
}

{% demo %} {% include "covers/drop-cap.njk" %} {% enddemo %}