w*s 发帖数: 7227 | 1 i have this
now height is fixed, i tried 100%, doesn't work.
尼玛老板催的紧,赶进度,边学边做。
谢谢! |
c*********e 发帖数: 16335 | 2 javascript debug你会吗?
【在 w*s 的大作中提到】 : i have this : : now height is fixed, i tried 100%, doesn't work. : 尼玛老板催的紧,赶进度,边学边做。 : 谢谢!
|
n*****t 发帖数: 22014 | 3 100% 这个玩意非常可疑,貌似跟 position 啥的都有关系。你这个不是 ngStyle 的问
题,是 css 的毛病。如果要自动占满屏幕,我是做了个 directive 算的。
【在 w*s 的大作中提到】 : i have this : : now height is fixed, i tried 100%, doesn't work. : 尼玛老板催的紧,赶进度,边学边做。 : 谢谢!
|
l**********n 发帖数: 8443 | 4 if you set height to 100%, it means take all the height of its parent
container, but it doesn't know what height it should be.
if you want it to take all height of the browser window, you have to set
height 100% on the body |
w*s 发帖数: 7227 | 5 大牛,是这样的,整个页面就是 2 column grid system,这右边是上面的程序,ng-
view在里面。
所以我在那行div里设成100%以为页面的右边的图形背景占满右边屏幕的,
结果就出来很窄的,基本ng-view出来结果是几行,它就是几行。
【在 l**********n 的大作中提到】 : if you set height to 100%, it means take all the height of its parent : container, but it doesn't know what height it should be. : if you want it to take all height of the browser window, you have to set : height 100% on the body
|
n*****t 发帖数: 22014 | 6 试试 100vh
【在 w*s 的大作中提到】 : 大牛,是这样的,整个页面就是 2 column grid system,这右边是上面的程序,ng- : view在里面。 : 所以我在那行div里设成100%以为页面的右边的图形背景占满右边屏幕的, : 结果就出来很窄的,基本ng-view出来结果是几行,它就是几行。
|
w*s 发帖数: 7227 | 7 赞美神!!! :)
【在 n*****t 的大作中提到】 : 试试 100vh
|