Używam Bootstrap dla mojej JSP
strony.
Chcę używać <fieldset>
i <legend>
dla mojej formy. To jest mój kod.
<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 jest
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;
}
Otrzymuję takie wyniki
Chcę uzyskać wyniki w następujący sposób
Próbowałem dodać
border:none;
width:100px;
do legend.scheduler-border
w CSS. Otrzymuję oczekiwany wynik. Problem w tym, że chciałbym dodać kolejne <fieldset>
dla innych pól. W tym przypadku problemem jest szerokość tekstu w legendzie, ponieważ jest ona dłuższa niż 100px
.
Więc co mam zrobić, aby uzyskać wyniki takie, jak wspomniałem? (Bez uderzania w tekst legendy)