Twitter Bootstrap 帮助块的可折叠元素的正确控制风格是什么?

发布于 2025-01-02 06:51:46 字数 596 浏览 0 评论 0原文

我需要创建内联元素来控制可折叠元素。我创建了以下内容:

<label class="control-label" for="surname">Surname</label>
<div class="controls">
  <input type="text" class="input-xlarge" id="surname">
  <p class="help-block">Input your surname. <a data-toggle="collapse" data-target="#surname-more">More...</a></p>
  <div id="surname-more" class="help-block collapse in">Additional information about surname will be here.</div>
</div>

因此,这样的元素在这里是 a 。但它看起来很糟糕(灰色文本中的蓝色链接)。是否有任何标准的 Twitter Bootstrap 类应该在这种情况下使用?

I need to create inline element to control collapsible element. I've created the following:

<label class="control-label" for="surname">Surname</label>
<div class="controls">
  <input type="text" class="input-xlarge" id="surname">
  <p class="help-block">Input your surname. <a data-toggle="collapse" data-target="#surname-more">More...</a></p>
  <div id="surname-more" class="help-block collapse in">Additional information about surname will be here.</div>
</div>

So, such element is a here. But it looks bad (blue link within grey text). Is there any standard Twitter Bootstrap class, which should be used in such scenario?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓬勃野心 2025-01-09 06:51:46

对链接应用 help-block 样式会使“更多...”文本变灰,但当您将鼠标悬停在链接上时,该链接仍显示深蓝色。

我会编写您自己的自定义样式来处理此问题:

    .help-block-link {
      color: #999;
    }

    .help-block-link:hover {
      color: #333;
      text-decoration: none;
      cursor: pointer;
    }
<a data-toggle="collapse" data-target="#surname-more" class="help-block-link">More...</a>

Applying the help-block style to the link makes the "More..." text gray, but the link still shows the dark blue color when you hovered over the link.

I would write your own custom style to handle this:

    .help-block-link {
      color: #999;
    }

    .help-block-link:hover {
      color: #333;
      text-decoration: none;
      cursor: pointer;
    }
<a data-toggle="collapse" data-target="#surname-more" class="help-block-link">More...</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文