Build Your Own HTML Chess Game: A Beginner's Guide
<!DOCTYPE html>
<html>
<head>
<title>Chess Game</title>
<style>
body {
background-color: #FFF;
}
#chess_board {
width: 500px;
height: 500px;
border: 1px solid black;
}
.white {
background-color: #FFF;
}
.black {
background-color: #444;
}
</style>
</head>
<body>
<div id='chess_board'>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
<div class='white' style='width:50px; height:50px; float:left;'></div>
<div class='black' style='width:50px; height:50px; float:left;'></div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lnvj 著作权归作者所有。请勿转载和采集!