HTML Tetris Game: Simple Structure and Styling
<html>
<head>
<title>Tetris</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
}
#tetris {
display: flex;
flex-direction: column;
justify-content: center;
border: 1px solid black;
width: 200px;
height: 400px;
}
#tetris > div {
border: 1px solid black;
width: 20px;
height: 20px;
background-color: rgba(255, 255, 255, 0.6);
}
</style>
</head>
<body>
<h1>Tetris</h1>
<div id='tetris'></div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmeu 著作权归作者所有。请勿转载和采集!