<!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;}
1 回答
- 1 回答
- 0 关注
- 1200 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消