我尝试了各种方法来将首字下沉应用到 Joomla 文章中。没有任何效果。
我假设我只需要将首字下沉样式(见下文)粘贴到 template.css 中,然后我可以将该类应用于短语 ONCE UPON A TIME... 如下所示:
<p class="introduction">O</p><p>nce upon a time...</p>
我可能错过了一些非常简单的东西,但我无法弄清楚。附加信息:文本编辑器是 tinyMCE;模板使用多个样式表。
p.introduction:first-letter
{
font-size: 44px;
float: left;
color: #D4D4C7;
line-height: 35px;
padding-top: 3px;
padding-right: 3px;
font-family: Times, serif, Georgia;
}