# 插件提示 - 文本没有显示在框内

**URL:** https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589
**Category:** Support
**Tags:** tooltips
**Created:** [2024年五月27日 17:15 UTC](https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589 "2024-05-27T17:15:53Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![ogulcan1787](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ogulcan1787/32/128589_2.png) [@ogulcan1787](https://meta.discourse.org/u/ogulcan1787)
#### Post date: [2024年五月27日 17:15 UTC](https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589/1 "2024-05-27T17:15:53Z")

</div>

**抱歉连续创建了两个帖子。**

 ![Ekran görüntüsü 2024-05-27 200921](https://global.discourse-cdn.com/meta/original/4X/9/9/8/998a465e9fcc2d7efcdb7a80c7b94d8467870df3.png)  
 ![Ekran görüntüsü 2024-05-27 200930](https://global.discourse-cdn.com/meta/original/4X/d/c/8/dc89a2ea42f1f987faf196d116be52b4973b2cee.png)

我该如何解决这个问题？

> **[Blizzard Forums](https://us.forums.blizzard.com/en/blizzard/)**

这里运行得非常流畅。

---

<div class="post-metadata">

### Author: ![bryce](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bryce/32/377822_2.png) [@bryce](https://meta.discourse.org/u/bryce)
#### Post date: [2024年五月27日 17:43 UTC](https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589/2 "2024-05-27T17:43:04Z")

</div>

我发现了这段 CSS，我认为它导致了问题。`white-space` 属性控制换行。

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/b/a/3ba1f167bd0894d193817651593dce408abb87eb.png)

如果我们用 `.main-link .top-row` 高亮显示内容，看起来是用来确保主题标题保留在它们的区域内：

 ![image](https://global.discourse-cdn.com/meta/original/4X/1/8/3/183b797777cbccf4829041951c1b185bc8053709.png)

当创建工具提示时，它是标题的“子元素”，因此它会自动使用相同的样式，除非被更改。

因此，要修复它，我们需要添加一些新的 CSS 来更改工具提示的 `white-space` 属性：

```css
.main-link .top-row .d-tooltip {
    white-space: normal;
}

```

---

<div class="post-metadata">

### Author: ![ogulcan1787](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ogulcan1787/32/128589_2.png) [@ogulcan1787](https://meta.discourse.org/u/ogulcan1787)
#### Post date: [2024年五月27日 17:52 UTC](https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589/3 "2024-05-27T17:52:09Z")

</div>

感谢您宝贵的时间来帮助我。🙏

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [2024年六月26日 17:52 UTC](https://meta.discourse.org/t/plugin-tooltips-the-texts-are-not-in-the-box/309589/4 "2024-06-26T17:52:18Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
