我正在开发一个非常基本的网站模板,左上角有一个固定的标题,左下角和右下角有一个固定的底线。
中间的内容应该是居中的,我只是无法弄清楚我做错了什么。
height: 100%
问题 1.) 如果我删除css 属性,为什么垂直居中不起作用?
问题 2.) 当height: 100%
在 html 标签上声明时,为什么站点大于 100% 并超出浏览器窗口?
问题 3.) 为什么bottom-left
显示正确,但不正确bottom-right
?
问题 4.) 如果 with 设置为 100% 并且文本向右对齐,文本不应该从右浏览器框架开始并延伸到左侧吗?为什么要扩展浏览器窗口?
非常感谢您的帮助。代码在下面可见
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html {
height:100%;
}
body {
height: 100%;
margin-left: 20px;‚
}
.title {
position: absolute;
top: 20px;
font-family: serif;
font-size: 20px;
text-align: left;
}
/* Center Text Section */
.area {
width: 100%;
height: 100%;
position: relative;
}
.middlespace {
position: absolute;
left: 50%;
top: 50%;
display: table;
}
.middlespace p {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.exhibitionindex {
text-align: center;
width: 500px;
margin-right: auto;
margin-left: auto;
}
.bottom-left {
position: absolute;
bottom: 15px;
text-align: left;
}
.bottom-right {
position: absolute;
bottom: 15px;
text-align: right;
}
.exhibitiontitle {
color: #d4d4d4;
font-style: italic;
font-family: sans-serif;
font-size: 10px;
text-align: center;
}
.bold {
font-family: serif;
}
.about {
font-size: 11px;
}
.contact {
font-size: 11px;
}
.openinghours {
font-style: italic;
color: #8e8e8e;
font-size: 11px;
}
</style>
<title>Website Title</title>
</head>
<body>
<div class="title">Logo / Title Text</div>
<div class="area">
<div class="middlespace">
<p>27. April 2012</p>
</div>
</div>
<div class="bottom-left">
<span class="about"><span class="bold">XYZ</span> is a project by Person One, Person Two, Person Three | </span>
<span class="contact">Website Information — <a href="mailto:info@info.com">info@info.com</a></span>
</div>
<div class="bottom-right"><span class="openinghours">Opening Hours Information</span></div>
</body>
</html>