有没有办法让Bootstrap5的边框标题中有文字?

z9gpfhce  于 2022-12-07  发布在  Bootstrap
关注(0)|答案(1)|浏览(141)

我正在尝试让文本进入元素的边界。我目前正在使用Bootstrap 5和jQuery。我已经尝试使用fieldset和legend元素,但是似乎没有实现这一点。
这是我试图得到的结果,AAA是标题:

xriantvc

xriantvc1#

这应该能行!

<fieldset class="border rounded-3 p-3">
   <legend class="float-none w-auto px-3">
      Your Title
   </legend>
   <p>Your content</p>
</fieldset>

相关问题