阴影(shadows)

使用“box-shadow”实用程序向元素添加阴影或去除阴影。

例子

虽然组件上的阴影在Bootstrap中默认是禁用的,并且可以通过启用$enable-shadows ,但您也可以使用我们的box-shadow实用工具类快速添加或删除阴影。包括支持.shadow-none和三个默认大小(有相关的变量匹配)。

No shadow
Small shadow
Regular shadow
Larger shadow
<div class="shadow-none p-3 mb-5 bg-light rounded">No shadow</div>
<div class="shadow-sm p-3 mb-5 bg-white rounded">Small shadow</div>
<div class="shadow p-3 mb-5 bg-white rounded">Regular shadow</div>
<div class="shadow-lg p-3 mb-5 bg-white rounded">Larger shadow</div>