div
因此,我的HTML 脚本中的标签目前存在问题。出于某种原因,我似乎无法弄清楚如何使用边距、宽度、高度等来调整它的大小。
这是代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Change The Vibe</title>
<style type="text/css">
.titleBox
{
margin-left: 300px;
font-size: 36px;
margin-right: 300px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
background-color: green;
margin-top: -50px;
width: 1000;
}
.titleHeader
{
color: white;
}
</style>
</head>
<body>
<div class="titleBox">
<h1 class="titleHeader">Change The Vibe</h1>
</div>
</body>
</html>
我还应该注意,我目前正在使用 Dreamweaver 来编辑我的脚本,所以如果这与我的问题有关,那么我想知道。