【CSS flex布局】用flex写个骰子
以下是一个使用CSS Flexbox布局创建简单骰子的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flex Dice</title>
<style>
.dice {
display: flex;
justify-content: space-around;
align-items: center;
width: 100px;
height: 100px;
background-color: #e0e0e0;
border: solid 2px #606060;
border-radius: 10px;
font-size: 30px;
font-weight: bold;
text-align: center;
line-height: 100px;
}
</style>
</head>
<body>
<div class="dice">1</div>
</body>
</html>
这段代码创建了一个类似于骰子的正方形盒子,其中包含了数字1。可以通过调整.dice
类中的width
、height
、background-color
、border
等属性来创建不同样式的骰子面。如果需要创建具有不同数字的骰子,可以通过JavaScript动态更改.dice
内的文本。
评论已关闭