像我们可以在MS Word中进行设置一样,如何使用CSS设置行距?
最佳答案
尝试line-height属性。
例如,下一行和上行距离为12px字体大小和4px:
line-height: 20px; /* 4px +12px + 4px */
或使用
em
单位line-height: 1.7em; /* 1em = 12px in this case. 20/12 == 1.666666 */
关于css - 设定行距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3845433/