我目前正在学习HTML
使用Foundation Game Design with HTML5 and JavaScript By Rex van der Spuy
. 在定位章节中,有 HTML 和 CSS 代码来创建一个 div,其中包含三个空 div。然后,这 3 个空 div 中的每一个都有一个background-image
并加载图像。
但是,我似乎没有得到相同的结果。这是我的代码,类似于书中的代码:
<!doctype html>
<html>
<title> Margins and Padding </title>
<style>
#stage{
display: block;
width: 600;
height: 600;
border-style: dotted;
border-width: thin;
}
.content{
width: 100;
height: 100;
float: left;
}
#image1{
background-image: url("1.jpg");
}
#image2{
background-image: url("2.jpg");
}
#image3{
background-image: url("3.jpg");
}
</style>
<body>
<div id="stage">
<div class="content" id="image1"></div>
<div class="content" id="image2"></div>
<div class="content" id="image3"></div>
</div>
</body>
</html>
这些图像与 HTML 页面位于同一文件夹中。我从网上尝试了一些东西,但没有什么能像在最后添加一个虚拟 divclear: both
并设置overflow
父 div 一样有效,但似乎没有任何效果。我得到的只是屏幕顶部的一个空行(父 div)。这本书说应该加载图像(甚至给出打印屏幕)
请告诉我出了什么问题