Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下内容:
<div> <h4 data-ng-show='showMe'>I am showing</h4> </div>
根据 h4 元素是显示还是隐藏,正在调整包含 div 的高度。
有没有办法让 div 有一个恒定的高度?我会使用 min-height 还是有其他方法可以做到这一点?
怎么样:
<div> <h4><span data-ng-show='showMe'>I am showing</span> </h4> </div>
您应该min-height向父级添加规则<div>。ng-show说明该指令添加或删除的.ng-hide类的文档:
min-height
<div>
ng-show
.ng-hide
.ng-hide CSS 类在 AngularJS 中预定义,并将显示样式设置为无(使用 !important 标志)