如何在div中保留单词?

时间:2014-02-19 11:35:39

标签: html css

我有这个代码,但是当我运行它时,这个词离底部div的一半

<a href="index.html"><div id="homebuttonlink">
  <b><p style="font-size: 30px; font-family: Verdana, Geneva, sans-serif;">Home</p></b>
</div></a>

1 个答案:

答案 0 :(得分:0)

使用white-space:nowrap;

对于实例,

<p style="font-size: 30px; font-family: Verdana, Geneva, sans-serif; white-space:nowrap;">Home</p>

希望这有帮助。