我正在尝试添加基于此示例的ui.bootstrap.alert:
https://plnkr.co/edit/?p=preview.
所以我改变了CSS中的高度,这是新的输出
.alert { margin-bottom: 1px; height: 30px; }
如何正确更改警报的高度?谢谢!
解决方法
为此,您需要更改行高和填充
.alert { margin-bottom: 1px; height: 30px; line-height:30px; padding:0px 15px; }