标签:white core char overflow border doc title 别踩白块 游戏
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>别踩白块</title>
<style>
#score{
text-align: center;
}
h2{
text-align: center;
}
div{
margin: 0 auto;
width: 100px;
height: 100px;
}
#main{
width: 400px;
height: 400px;
background: white;
border: 2px solid gray;
margin: 0 auto;
position: relative;
overflow: hidden;
}
#con{
width: 100%;
height: 400px;
position: relative;
top: -100px;
border-collapse: collapse;
}
.row{
height: 100px;
width: 100%;
}
.cell{
height: 100px;
width: 100px;
float: left;
}
.black{
background: black;
}
</style>
</head>
<body>
<h2>score</h2>
<h2 id="score">0</h2>
<div id="main">
<div id="con"></div>
</div>
</body>
标签:white core char overflow border doc title 别踩白块 游戏
原文地址:http://www.cnblogs.com/haishen/p/7763022.html