6

我正在使用带有标题标签的 html。

例如:

<html>
  <head>
    <title> Title Name  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;                                                                      </title>
  </head>
</html>

在这个我想要使用 html 代码的“标题名称”之后的长空格。我尝试使用&nbsp;,但放置代码太长。标题后空格的任何其他替代方式。

4

4 回答 4

1

如果您的问题是您只想避免编写冗长&nbsp;代码。如果你使用 PHP,那么我建议你这样做:

<title>Start <?php str_repeat("&nbsp;", 30); ?> End</title>

否则我认为&nbsp;像你一样使用没有问题。

于 2013-01-22T08:54:13.843 回答
1

关于 FeRtoll 的回答,由于您不想使用 PHP,您可以使用将一些 PHP 函数移植到 JS 的 JavaScript 库。

http://phpjs.org/functions/str_repeat/

于 2013-01-22T10:20:10.800 回答
1

我不明白为什么长度会成为问题,但是您可以使用实际的 NO-BREAK SPACE U+00A0 字符而不是实体引用&nbsp;,例如

<title>Title Name                                                        </title>
于 2013-01-22T09:43:11.200 回答
1

那么&nbsp;,&thinsp;&ensp;&emsp;

于 2016-12-28T15:33:55.047 回答