<p>
    This is for everyone.
    <br>
    The power of the Web is in its universality.
    Access by everyone regardless of disability is an essential aspect.
</p>
p::first-letter {
    font-size: 2em;
    font-weight: bold;
    color: red;
}
실제 적용된 모습
::first-letter {
    /* ... */
}
p::first-letter {
    font-size: 2em;
    font-weight: bold;
    color: red;
}
<!-- 구두점은 첫 번째 글자의 일부로 함께 선택됩니다. -->
<p>*First Letters and Associated Punctuation</p>
<p>*()First Letters and Associated Punctuation</p>
<p>F*irst Letters and Associated Punctuation</p>
<p>F**()irst Letters and Associated Punctuation</p>

<!-- 첫 번째 글자 바로 앞에 공백(띄어쓰기)이 있고
     구두점이 그보다 더 앞에 있을 경우,
     첫 번째 글자가 없다고 간주하여
     ::first-letter는 아무것도 선택하지 않습니다. -->
<p>* First Letters and Associated Punctuation</p>

<!-- 첫 번째 글자 바로 뒤에 공백(띄어쓰기)이 있고
     구두점이 그다음에 올 경우,
     해당 구두점은 첫 번째 글자의 일부로 간주되지 않습니다. -->
<p>F *irst Letters and Associated Punctuation</p>
실제 적용된 모습
.target::first-letter {
    font-size: 2em;
    font-weight: bold;
    color: red;
}
<span class="target">블록 컨테이너가 아닌 요소입니다.</span>
<p class="target"><img src="earth.jpg" width="150"> 첫 번째 글자 앞에 이미지가 있어요.</p>

<style>
    .star::before {
        content: "★";
    }
</style>
<p class="target star">::before 가상 요소의 콘텐츠로 별표(★)가 있어요</p>
실제 적용된 모습
/* 제목 바로 다음에 오는 문단(p)의 첫 글자만 선택 */
h3 + p::first-letter {
    font-size: 4rem;      /* 글자 크기를 대폭 키움 */
    font-weight: bold;    /* 굵게 강조 */
    float: left;          /* 글자를 왼쪽으로 띄워 텍스트가 둘러싸게 함 */
    line-height: 1;       /* 줄 높이를 조절해 위아래 여백 최적화 */
    margin-right: 8px;    /* 오른쪽 본문과의 간격 */
    color: #0056b3;       /* 웹의 상징적인 파란색 계열 */
}

/* 문단의 전체적인 가독성을 위한 스타일 */
p {
    line-height: 1.6;
    font-size: 1.1rem;
}
<h3>The Birth of the World Wide Web</h3>
<p>
    When I first proposed the information management system in 1989, 
    my goal was to allow scientists to share data across the globe. 
    The web was designed to be a universal space for information, 
    accessible to everyone, everywhere, regardless of their background.
</p>
<p>
    Today, the web continues to evolve as a powerful tool for 
    creativity and collaboration. It remains a decentralized platform 
    where the only limit is our collective imagination.
</p>
실제 적용된 모습