<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" context="width=device-width,initial-scale=1,user-scalable=no"/>
<title>数独游戏</title>
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<body>
<div class ="title">
<h1>数独游戏</h1>
</div>
<!--九宫格 -->
<div id="container" class="container grid">
</div>
<!--按钮组 -->
<div id="dashboard" class="dashboard">
<div class="buttons">
<button type="button" id = "check">检查</button>
<button type="button" id = "reset">重置</button>
<button type="button" id = "clear">清理</button>
<button type="button" id = "rebuild">重建</button>
</div>
</div>
<!--弹出面板-->
<div id="popupNumbers" class="grid popup-num hidder">
</div>
</body>
</html>
《css》
html {
font-size: 14px;
}
body {
margin: 0;
padding: 0;
background: #eeeeee;
font-family: "Consolas", "微软雅黑";
user-select: none;
max-width: 450px;
}
body > * {
max-width: 450px;
}
.tittle {
padding: 1rem 5%;
background: steelblue;
color: white;
margin: 2rem;
box-shadow: 0 0.2rem 0.03rem #303030;
}
h1 {
margin: 0;
padding: 0;
}
.hidden {
display: none;
}
奋斗好青年