我是 CSS 的完全初学者(这实际上是我写的第一个 CSS)和 HTML 的相对初学者,所以如果我遗漏了一些明显的东西或者我犯了一些严重的错误,请原谅我。现在,问题:
我正在尝试创建一个布局,但偶然发现了一个禁止我做我想做的事情的问题。这是我所拥有的屏幕截图:
我想要做的只是简单地把div
“家”、“博客”等写成和div
下面的一样宽,有效地使它在与侧边栏相同的 Y 处结束。像这样:
HTML 文件的主体包含一个background
class div
,它负责装饰文本,而所有不存在的内容都在另一个div
名为container
. container
设置为display: table
并在其中包含两个div
class row
(标记 a display: table-row
),第一个包含导航div
,第二个包含主要和侧边栏(所有这些都是 class section
,标记display: table-cell
)。
这是整个文件,显示 CSS 以及我如何尝试构建 HTML:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<title>mini</title>
<style type="text/css">
* {
font-family: "Ubuntu", Helvetica, Arial, sans-serif;
margin: 0;
}
body {
padding: 100px 0 0 0;
background: white;
color: #444444;
}
h1 {
font-size: 48px;
font-weight: bold;
letter-spacing: -0.083333em;
line-height: 1.3em;
text-transform: lowercase;
}
p {
line-height: 1.5em;
}
.container {
overflow: hidden;
padding: 24px 24px 24px 24px;
border-spacing: 35px 35px;
display: table;
}
.section {
position: relative;
padding: 24px 24px 24px 24px;
border-width: 1px;
border-style: solid;
border-color: #888888;
background: white;
display: table-cell;
}
.background {
position: absolute;
margin: -124px -124px -124px -124px;
z-index: -1;
float: right;
font-size: 54px;
line-height: 1em;
font-weight: bold;
color: #eeeeee;
}
.row {
display: table-row;
}
#sidebar {
width: 20%;
}
#navigation {
font-size: 24px;
font-weight: bold;
text-transform: lowercase;
}
#empty {
}
</style>
</head>
<body>
<div id="background" class="background">
bgtext
</div>
<div id="foreground" class="container">
<div class="row">
<div id="navigation" class="section">
navitext
</div>
</div>
<div class="row">
<div id="mainbody" class="section">
<h1>Main</h1>
maintext
</div>
<div id="sidebar" class="section">
<h1>Sidebar</h1>
sidetext
</div>
</div>
</div>
</body>
</html>