模式对于内容来说太大
Modal is too large for the content
我在使用模态时遇到问题。模态的大小太大,即它太高了。我需要缩小模态尺寸。我需要做什么才能实现它?
Set height
property to auto to disable fixed height and optionally set max-height
适合自己的就好。
{
height: auto;
max-height: 300px;
}
我在使用模态时遇到问题。模态的大小太大,即它太高了。我需要缩小模态尺寸。我需要做什么才能实现它?
Set height
property to auto to disable fixed height and optionally set max-height
适合自己的就好。
{
height: auto;
max-height: 300px;
}