window.outerHeight使用CSS

时间:2012-01-06 16:16:21

标签: css

如果我在CSS中制作以下代码:

 html body {
     height: 100%
 }

height指的是window.innerHeight。

有没有办法引用window.outerHeight只使用CSS?

2 个答案:

答案 0 :(得分:0)

不,CSS并不意味着能够调整浏览器窗口的大小。使用JavaScript。也就是说,当有人调整浏览器窗口大小时,很多用户(比如我)都不喜欢它。我认为您的网站应符合我的屏幕尺寸,而不是我的窗口应符合您的网站。

根据@ RobW的评论进行更新

如果您的意思是如何控制页面正文周围的区域,则需要更改以下内容:

body {
    margin: 100px; /* Something random to illustrate. This is area outside the body but, as with everything else, inside the browser window. */
    padding: 10px; /* This is more space, but also include the background image, which margin will not */
}

答案 1 :(得分:0)

不,没有。 CSS无法控制窗口属性。