因此,我目前在HTML脚本中遇到div
标记的问题。出于某种原因,我似乎无法弄清楚如何使用边距,宽度,高度等来调整其大小。
以下是代码:
<!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编辑我的脚本,所以如果这与我的问题有关,那么我想知道。
答案 0 :(得分:0)
宽度后需要px。
width = 1000px;
答案 1 :(得分:0)
不要忘记把它放在你的
.titleHeader
{
padding-left:30px;
color: white;
并在你看到它时调整它的大小 试试吧