如何在仅在 bootstrap 中使用 1 div 时将第二个浮动标签添加到输入 5

How to add 2nd floating label to input when using 1 div only in bootstrap 5

如何将第二个浮动标签添加到右侧输入字段?现在的问题是第二个标签与第一个输入字段中的第一个标签重叠:

<div class="form-floating input-group">                         
    <input type="text" name="" class="form-control delete-from-date" value="" />
    <label for="floatingDateToDelete">startdate</label>
    <span class="input-group-text">till</span>                          
    <input type="text" name="" class="form-control delete-till-date" value="" />
    <label for="floatingDateToDelete">Enddate</label>   
    <button type="submit" class="btn btn-danger delete-multiple-events" name="submit">Delete</button>               
</div>

这是一个fiddle你可以看到的问题:http://jsfiddle.net/1uf0zv2d/6/

浮动标签“结束日期”应出现在右侧输入字段中

每个 input+label 组合需要在其自己的 .form-floating class 内。在同一个 div 中有多个输入导致了这个问题。此外,每个输入字段 需要 占位符。

我已将整个组合移动到一个容器中,上面有 .input-group。您可以在此处查看更改。

<html>

<head>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</head>

<body>
  <div class="input-group">
    <div class="form-floating">
      <input type="text" class="form-control delete-from-date" id="floatingDateToDelete1" placeholder="startdate" />
      <label for="floatingDateToDelete1">startdate</label>
    </div>
    <span class="input-group-text">till</span>
    <div class="form-floating">
      <input type="text" class="form-control delete-till-date" id="floatingDateToDelete2" placeholder="Enddate" />
      <label for="floatingDateToDelete2">Enddate</label>
    </div>
    <button type="submit" class="btn btn-danger delete-multiple-events" name="submit">Delete</button>
  </div>
</body>

</html>