我的首字母大写有问题(第一个字母大)。
.article {
text-align:justify;
text-wrap: unrestricted;
-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* Safari and Chrome */
column-count:3;
}
.article:first-letter {
font-size:38px;
float:left;
line-height: 38px;
}
.article:first-line { line-height: 100%; }
第一:在 Firefox 中,字母像超文本一样向上移动。我尝试使用vertical-align
没有成功。我注意到它只在 Firefox 中呈现这样的效果。
第二:我希望上限为 40px 高(它们现在是 38px)。当我添加 2 个额外像素时,小文本中的第三行也会缩进。为什么?是否为文本下方的任何不寻常的字母(如 j)腾出空间?