当前位置:  开发笔记 > 前端 > 正文

HTML,身高100%不起作用

如何解决《HTML,身高100%不起作用》经验,为你挑选了1个好方法。

好的,我有一个CordovaAngularJS的移动应用程序.对于样式,我使用LessBootstrap.


问题

在移动应用程序中,我试图用百分比(%)来调整我的div.但这似乎不起作用.我似乎无法改变以下行为:The divs are as big as the content inside of them.这个问题听起来很简单,我在这里尝试了很多选项(stackoverflow)以及在网络上.然而,我还没有找到修复它的解决方案,而且它变得非常烦人.


我试过了

添加html, body { height: 100% },

添加 html, body, #canvas { height: 100%}

添加 #canvas { min-height: 100% }

添加 html { height: 100% } body { min-height: 100% }

还有很多其他的变化.使用px工作,但我不知道我的移动设备有多大,所以这不是真正的方便..(我也使用bootstrap和一些媒体查询样式).


当我向div添加元素时,我得到以下行为:

HTML

我想删除那个空白空格,但我只能在使用px而不是%时实现.


少例:

html, body {
    background: transparent;
    height: 100%;
    margin: 0;
    padding: 0;    
}

#canvas {
    min-height: 100%;
}

body {
    -webkit-touch-callout: none;                 //prevent callout to copy image, etc when tap to hold 
    -webkit-text-size-adjust: none;              //prevent webkit from resizing text to fit 
    -webkit-user-select: node;                   //prevent copy paste, to allow, change 'none' to 'text'  
    min-height: 100%;
    margin: 0;
    padding: 0; 
    background-color: @cgiColor;  
}

.header {
    top: 0px;
    width: 100%;
    height: 5%;
    background: @companyColor;
    color: @textColor;
}

.incidentContainer {
    background: @appBodyColor;
    width: 100%;
    height: 70%;
}

.footer {
    position: absolute;
    color: @textColor;
    bottom: 0px;
    height: 15%;
    width: 100%;    
    background: @companyColor;
}

额外的信息

我正在使用AngularJS,所以我的应用程序是单页面应用程序.我的index.html看起来如下:

  
   

当然还有我的CSS表的标准链接,等等.所有其他页面都包含在' ng-view '中,并且没有任何页面 要么 标签.这是因为它们包括在内.


解决方案是添加以下CSS规则:

div[ng-view]{
     height: 100%;
}

这很有效,因为所有div(除了html和body)都是这个项目的子项.添加100%使div空间跨度达到屏幕的100%,从而为百分比提供了工作空间.

积分转到Jai这个答案!



1> 小智..:

您是否尝试添加以下css并设置重要属性

html, body { height: 100% !important }

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有