如何在 vue 引导中自定义卡的图像大小



我正在做一个NuxtJS项目,使用BootstrapVue作为前端框架。我正在尝试使用以下代码编辑插入卡片标题内的图像的大小:

<b-card
bg-variant="primary"
text-variant="white"
img-alt="Image"
img-src="~/assets/images/house.png"
header="The house"
class="text-center position-relative"
>
<b-card-text>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</b-card-text>
<b-button variant="primary" class="paragraph stretched-link"
>Click here</b-button
>
</b-card>

有谁知道是否可以通过b卡属性(没有CSS(自定义图像的样式?文档对我没有帮助。

您可以使用img-heightimg-width来提供卡内的图像大小,它们接受字符串或数字作为值:

<b-card
bg-variant="primary"
text-variant="white"
img-alt="Image"
img-src="~/assets/images/house.png"
img-height="200"
img-width="200"
header="The house"
class="text-center position-relative"
>

相关内容

  • 没有找到相关文章

最新更新