admin管理员组文章数量:1352133
I logged the height and padding values using this code:
jQuery( document ).ready( function() {
console.log( jQuery('body').css('height') );
console.log( jQuery('body').css('padding-top') );
console.log( jQuery('body').css('padding-bottom'));
}); //end ready
This outputs:
20px
0px
0px
If the height of the body is only 20 pixels, why does the entire background of the browser change black when I use this CSS:
body {
background: black;
}
I'm using Chrome as my browser. If you're curious as to how I ran into this question, I ran into a problem of adding a click event to the body that didn't ever seem to fire due to the body's default height.
I logged the height and padding values using this code:
jQuery( document ).ready( function() {
console.log( jQuery('body').css('height') );
console.log( jQuery('body').css('padding-top') );
console.log( jQuery('body').css('padding-bottom'));
}); //end ready
This outputs:
20px
0px
0px
If the height of the body is only 20 pixels, why does the entire background of the browser change black when I use this CSS:
body {
background: black;
}
I'm using Chrome as my browser. If you're curious as to how I ran into this question, I ran into a problem of adding a click event to the body that didn't ever seem to fire due to the body's default height.
Share Improve this question asked Mar 31, 2014 at 19:09 KacyKacy 3,4305 gold badges33 silver badges61 bronze badges 7- 1 Body refers to the hole <body></body> tag. If I were you I would add a div inside your body and change the property of this div. – ooo Commented Mar 31, 2014 at 19:10
-
Does it happen even when you set
html{ background:blue; }
for example? – Michał Commented Mar 31, 2014 at 19:20 -
@Michał Yes, the whole page turns blue using
html{ background:blue; }
– Kacy Commented Mar 31, 2014 at 19:22 -
And the 20px high
<body>
remains black? – Michał Commented Mar 31, 2014 at 19:23 - 1 Check this post – tliokos Commented Mar 31, 2014 at 19:28
4 Answers
Reset to default 7A long time ago there was something called document.bgcolor
, or something like that, that would let you set the background of the document itself, but that was deprecated.
Instead it was decided that setting document.body.style.backgroundColor
, or in other words setting the background of the body, would also set the background color for the document
automagically, as the document
object has no styl
e property, but it's still visible when the body/html elements does not pletely cover the document, that's why the entire page goes black even if the body element does not cover the entire document.
The element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
Says the definition at w3schools. Having in mind this definition, if the <html>
element doesn't the style of <body>
is considered representation of the document's style. Our little investigation from the ments proves this.
Edit:
Didn't see the ment from the question. The link by tliokos mentions the same.
If you really want a click event on a full-sized body, try this:
body{
background-color: black;
min-height: 100%;
padding: 0;
margin: 0;
}
Firstly you have to understand what is the body, and bare in mind the body is everything you see when page loads so in order to divide your page add a div or table and change its background.
本文标签:
版权声明:本文标题:javascript - Why does changing the body's background color change the entire page's background? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743900713a2558623.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论