Bootstrap 如何在一行之外显示下拉菜单

c8ib6hqw  于 2022-12-08  发布在  Bootstrap
关注(0)|答案(1)|浏览(140)

我正在使用库制表器,我试图使用引导下拉,我不知道如何显示下拉完全或行外。
第一个
下面是完整的json数据:

[
  {
    "report_id": 4,
    "report_nom": "Cars",
    "report_description": "Car list",
    "report_frequency": "1",
    "report_filename": "4619082022130005f16de18332f9dab9cbcf6903120837e37762f0c7",
    "access_download": "true",
    "access_id": 3,
    "report_updatedate": "19/08/2022 00:00:09",
    "report_download": "<div style='display: flex'><div class='dropdown'>  <button class='btn btn-secondary dropdown-toggle' type='button' id='dropdownMenuButton' data-bs-toggle='dropdown' aria-haspopup='true' aria-expanded='false'>Dropdown button</button><div class='dropdown-menu' aria-labelledby='dropdownMenuButton'><a class='dropdown-item' href='#'>Action</a><a class='dropdown-item' href='#'>Another action</a><a class='dropdown-item' href='#'>Something else here</a></div></div></div>"
  }
]

我试着添加一个高z-index,但它不能修复它。
我要寻找的结果:

相关问题