我怎么能做到不管每个文本的大小如何都能彼此粘在一起呢?现在发生的情况是test <> test_2
和test_2 <> test_3
之间有不同的间隙。特别是在调整div
的大小时。
<div>
<div style="font-size:2vw">test</div>
<div style="font-size:10vw">test2</div>
<div style="font-size:3vw">test3</div>
</div>
我怎么能做到不管每个文本的大小如何都能彼此粘在一起呢?现在发生的情况是test <> test_2
和test_2 <> test_3
之间有不同的间隙。特别是在调整div
的大小时。
<div>
<div style="font-size:2vw">test</div>
<div style="font-size:10vw">test2</div>
<div style="font-size:3vw">test3</div>
</div>
1条答案
按热度按时间cgh8pdjw1#
根据显示的文本(例如,带有大下行字母的小写字母或大写字母),您无法避免行间的空格不同。
另请参阅:"Typography – The Anatomy of Letters"
您只能通过调整设计/布局概念来减轻这种影响:
text-transform: uppercase;
切换到大写字母第一个