我建立一个以视频为背景的网站。我希望所有div都居中并具有响应能力,这就是为什么我使用100%的宽度和高度。然后,我有一个叠加的div,它在使用jquery单击时淡入和淡出。我的问题是,此div消失后,似乎无法在该div周围获得均匀的利润。我要在其上利润的div的ID为“ info”。
我的html看起来像这样:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="description" content=""/>
<meta name="keywords"content=""/>
<title></title>
<link href="css/main.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn").click(function(){
$("#info").fadeToggle("slow");
});
});
</script>
</head>
<header>
<div id="nav">
<p><a id="btn" href="#">+</a></p>
</div>
</header>
<body>
<div id="container">
<div id="info">
</div>
</div>
</body>
<video id="video_background" src="vid/147000037.mp4" autoplay>
</html>
和我的CSS:
* {
margin: 0;
padding: 0;
}
body {
font-family: "HelveticaNeue-UltraLight","HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;
}
header {
z-index: 999;
display: block;
height: auto;
width: 100%;
position: fixed;
}
header a {
text-decoration: none;
font-size: 1.8em;
color: #000000;
}
#nav {
position: relative;
float: right;
top: 15px;
right: 20px;
color: #000000;
}
#container {
height: 100%;
width: 100%;
display: block;
}
#video_background {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1000;
}
#info {
height: 100%;
width: 100%;
background: rgba(255,255,255,0.97);
z-index: 900;
display: none;
position: fixed;
margin: 10px;
vertical-align: center;
}
最佳答案
由于您的信息框具有固定的位置,因此您可以省略CSS中的高度/宽度和边距,并使用偏移量创建具有良好边距的响应式容器。只需将#info
css更改为以下内容:
#info {
/* omit height & width */
background: #bada55; /* Just because white on white is tough to see */
z-index: 900;
display: none;
position: fixed;
/* omit margin and use according offsets */
top:15px;left:15px;right:15px;bottom:15px;
vertical-align: center;
}
见working here。
关于html5 - 在宽度为100%高度为100%的div上的边距在宽度为100%高度为100%的另一个div内的边距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15966570/