我试图通过基线使标题与正文对齐,但这似乎证明非常困难。我一直在玩弄不同的方法,但似乎找不到完美的解决方案。这是我所追求的一个例子:
<h2>XxMmxX</h2>
<p class="right">
I saw for the first time the earth's shape. I could easily see the shores of continents, islands, great rivers, folds of the terrain, large bodies of water. The horizon is dark blue, smoothly turning to black. . . the feelings which filled me I can express with one word—joy.
</p>
风格:
h2 {
position: relative;
font-size: 24px;
line-height: 40px;
text-align: right;
width: 190px;
top: 30px;
}
.right {
margin-left: 200px;
font-size: 14px;
line-height: 20px;
}
我想让“XxMmxX”的基线与文本的基线对齐。
一些注意事项:
- 标题右对齐并具有固定宽度
- 标题使用比正文更大的字体大小
- 我希望它们完全对齐,这意味着不仅仅是设置一些 px 的顶部并使其几乎对齐。(此页将被打印,这肯定会很明显)