1

我正在使用自定义 BBCodes 在论坛上制作“外星语言”数据库。如果用户有字体,它会以外来语言显示一段文本。我需要一个指向字体的链接,出于格式原因,我需要以问号形式的链接位于外来文本的上方或下方(并不重要),问号和文本都需要相对于页面的其余部分位于同一行,并且 div 不能在 div 之外断开行。

我的尝试没有奏效:

    <div style="white-space:nowrap">
    <div style="display:inline;">
    <a href="http://f.tarazedi.com/viewtopic.php?f=7&t=24" title="Can't see this?  Download the font." style="font-size:5pt; font-family:Small Fonts, Tahoma;color:#333333">?</a></div>
    <div class="l" style="font-size:150%;display:inline; white-space:nowrap;"><strong>{TEXT}</strong></div></div>

链接到示例用法(请参见文本后面的红色框和问号,而不是上面的)。

4

2 回答 2

0

你试过<sup>标签吗?像这样的东西:

<strong>{TEXT}</strong><sup><a href="http://www.google.com">?</a></sup>

出来像:

{文本}

于 2013-05-10T17:44:31.897 回答
0

我不认为简单的 css 像float: left在 ? div 会工作吗?

<div style="white-space:nowrap">
  <div style="float: left;">
    <a href="http://f.tarazedi.com/viewtopic.php?f=7&t=24" title="Can't see this?  Download the font."
       style="font-size:5pt; font-family:Small Fonts, Tahoma;color:#333333">?</a>
  </div>
  <div class="l" style="font-size:150%; display:inline; white-space:nowrap;">
    <strong>{TEXT}</strong>
  </div>
</div>
于 2013-05-10T17:22:21.933 回答