201

我正在为我的JSP页面使用 Bootstrap。

我想为我的表格使用<fieldset><legend>。这是我的代码。

<fieldset class="scheduler-border">
    <legend class="scheduler-border">Start Time</legend>
    <div class="control-group">
        <label class="control-label input-label" for="startTime">Start :</label>
        <div class="controls bootstrap-timepicker">
            <input type="text" class="datetime" id="startTime" name="startTime" placeholder="Start Time" />
            <i class="icon-time"></i>
        </div>
    </div>
</fieldset>

CSS是

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
            box-shadow:  0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
}

我得到这样的输出 在此处输入图像描述

我想通过以下方式输出

在此处输入图像描述

我尝试添加

border:none;
width:100px;

legend.scheduler-borderCSS 中。我得到了预期的输出。但问题是我想<fieldset>为另一个字段添加另一个。那时,图例中文本的宽度是一个问题,因为它比100px.

那么我该怎么做才能得到我提到的输出呢?(不打图例文字)

4

8 回答 8

237

这是因为默认情况下,Bootstrap 将legend元素的宽度设置为 100%。您可以通过将您的更改legend.scheduler-border为也使用来解决此问题:

legend.scheduler-border {
    width:inherit; /* Or auto */
    padding:0 10px; /* To give a bit of padding on the left and right */
    border-bottom:none;
}

JSFiddle 示例

您还需要确保在 Bootstrap之后添加自定义样式表,以防止 Bootstrap 覆盖您的样式 - 尽管您的样式在这里应该具有更高的特异性。

您可能还想添加margin-bottom:0;它以减少图例和分隔线之间的差距。

于 2013-05-31T08:02:28.893 回答
137

在 bootstrap 4 中,在字段集上添加与图例混合的边框要容易得多。您不需要自定义 css 来实现它,可以这样完成:

<fieldset class="border p-2">
   <legend  class="w-auto">Your Legend</legend>
</fieldset>

看起来像这样: bootstrap 4 字段集和图例

于 2018-05-23T11:40:25.247 回答
22

我遇到了这个问题,我用这种方式解决了:

fieldset.scheduler-border {
    border: solid 1px #DDD !important;
    padding: 0 10px 10px 10px;
    border-bottom: none;
}

legend.scheduler-border {
    width: auto !important;
    border: none;
    font-size: 14px;
}
于 2016-03-29T18:11:18.347 回答
18

我有一个不同的方法,使用引导面板来显示它更丰富。只是为了帮助某人并改善答案。

.text-on-pannel {
  background: #fff none repeat scroll 0 0;
  height: auto;
  margin-left: 20px;
  padding: 3px 5px;
  position: absolute;
  margin-top: -47px;
  border: 1px solid #337ab7;
  border-radius: 8px;
}

.panel {
  /* for text on pannel */
  margin-top: 27px !important;
}

.panel-body {
  padding-top: 30px !important;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
  <div class="panel panel-primary">
    <div class="panel-body">
      <h3 class="text-on-pannel text-primary"><strong class="text-uppercase"> Title </strong></h3>
      <p> Your Code </p>
    </div>
  </div>
  <div>

这将给出下面的样子。 在此处输入图像描述

注意:我们需要更改样式以使用不同的标题大小。

于 2017-09-19T15:52:36.800 回答
8

在 Bootstrap 5 中,对应用于图例的默认样式的修改会导致与使用Bootstrap 4获得的渲染不同,然后您必须添加float-none<legend>标签的类:

<fieldset class="border p-2">
   <legend  class="float-none w-auto">Your Legend</legend>
</fieldset>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"/>
<form>
<fieldset class="border p-2">
   <legend  class="float-none w-auto p-2">Your Legend</legend>
   <input type="text">
</fieldset>
</form>

于 2021-11-06T23:35:15.553 回答
7

只是想简单地总结一下上面所有的正确答案。因为我不得不花费大量时间来弄清楚哪个答案可以解决问题以及幕后发生了什么。

bootstrap 的 fieldset 似乎有两个问题:

  1. bootstrap宽度设置legend为 100%。这就是为什么它覆盖fieldset.
  2. 有一个bottom border用于legend.

因此,我们需要解决的问题是将图例宽度设置为自动,如下所示:

legend.scheduler-border {
   width: auto; // fixes the problem 1
   border-bottom: none; // fixes the problem 2
}
于 2017-10-13T21:02:00.107 回答
1

fieldset.scheduler-border {
  border: 1px groove #ddd !important;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
  margin-top: 30px !important;
}

legend.scheduler-border {
  font-size: 1.2em !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
  margin-top: -15px;
  background-color: white;
  color: black;
}
<div class="container">
    <fieldset class="scheduler-border">
        <legend class="scheduler-border">Technical Ameen</legend>
        <h2>Your Work Here</h2>
    </fieldset>
</div>

如果您找不到在引导程序 5 中使用图例标签的任何适当解决方案

您可以在图例标签中使用 CSS 属性作为替代解决方案,这是一个内联 CSS 示例。

style="margin-top:-15px; background-color: white; color: black;"

另外,将此行添加到 margin-top 的 fieldset 标记中

 style="margin-top: 30px !important;"

在此处输入图像描述

我希望这是使用 bootstrap 5 获得传奇风格的一个非常简单的解决方案

于 2021-08-18T17:50:28.957 回答
0
<fieldset  class="border p-2 form-group">
   <legend class="control-label customer-legend pl-1">Your Legend</legend>
</fieldset>

使用 CSS:

.customer-legend:before {
    left: 100px;
}
于 2021-04-03T07:29:32.273 回答