我试图让一个半透明的 div 覆盖整个屏幕。我试过这个:
#dimScreen
{
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
}
但这并没有覆盖整个屏幕,它只覆盖了 div 内的区域。
我试图让一个半透明的 div 覆盖整个屏幕。我试过这个:
#dimScreen
{
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
}
但这并没有覆盖整个屏幕,它只覆盖了 div 内的区域。
添加position:fixed
. 然后封面固定在整个屏幕上,滚动时也是如此。
并且也许还可以添加,margin: 0; padding:0;
这样它就不会在封面周围留出一些空间。
#dimScreen
{
position:fixed;
padding:0;
margin:0;
top:0;
left:0;
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
}
如果它不应该固定在屏幕上,请使用position:absolute;
CSS Tricks还有一篇关于全屏属性的有趣文章。
编辑:
刚刚遇到这个答案,所以我想添加一些额外的东西。
就像评论中提到的丹尼尔·艾伦·兰登top:0; left:0;
一样,请确定,封面贴在屏幕的顶部和左侧。
如果您希望某些元素位于封面顶部(因此它不会覆盖所有内容),请添加z-index
. 数字越高,覆盖的级别越多。
您还需要将父元素设置100%
为
html, body {
height: 100%;
}
演示(更改了background
演示目的)
另外,当你想覆盖整个屏幕时,似乎你想要dim
,所以在这种情况下,你需要使用position: fixed;
#dimScreen {
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
position: fixed;
top: 0;
left: 0;
z-index: 100; /* Just to keep it at the very top */
}
如果是这样的话,那你就不需要了html, body {height: 100%;}
这会成功的!
div {
height: 100vh;
width: 100vw;
}
使用position:fixed
这种方式,您的 div 将持续保持在整个可视区域中..
给你的 div 一个类overlay
并在你的 CSS 中创建以下规则
.overlay{
opacity:0.8;
background-color:#ccc;
position:fixed;
width:100%;
height:100%;
top:0px;
left:0px;
z-index:1000;
}
演示: http: //www.jsfiddle.net/TtL7R/1/
#dimScreen{
position:fixed;
top:0px;
left:0px;
width:100%;
height:100%;
}
尝试这个
#dimScreen {
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
position: fixed;
top: 0;
left: 0;
}
像这样应用 css-reset 来重置所有边距和填充
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126 许可证:无(公共领域)*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
您可以根据需要使用各种 css-reset,正常并在 css 中使用
html
{
margin: 0px;
padding: 0px;
}
body
{
margin: 0px;
padding: 0px;
}
请尝试在正文上将边距和填充设置为 0。
<body style="margin: 0 0 0 0; padding: 0 0 0 0;">
将 html 和 body 标签设置height
为100%
并删除 body 周围的边距:
html, body {
height: 100%;
margin: 0px; /* Remove the margin around the body */
}
现在将position
您的 div 设置为fixed
:
#dimScreen
{
width: 100%;
height: 100%;
background:rgba(255,255,255,0.5);
position: fixed;
top: 0px;
left: 0px;
z-index: 1000; /* Now the div will be on top */
}
演示:http: //jsfiddle.net/F3LHW/