我正在寫一個HTML代碼,其中第一個字母必須是大的,並且應該是2行。以下是我的代碼。將第一個字母應用於CSS
HTML
<div class="section-sect1">
<a name="CH_00001-SEC-1"></a>
<div class="section-title">
<span class="section-num"></span> Title</div>
<div class="para">Text1
</div>
<div class="para">Text2
</div>
</div>
CSS
.section-sect1 .para:first-of-type:first-letter {
border: 1px solid;
font-weight: bold;
color: red;
}
這裏是相同的小提琴鏈接。 https://jsfiddle.net/8b5z8gb4/
請讓我知道我該怎麼做到這一點。
.para:第一個字母:第一個字母代替這個使用這個.para:第一個字母只適用於第一個字母的css –