用flex布局摆放骰子位置

用flex布局摆放骰子位置

1点

在这里插入图片描述

.box{
      width: 200px;
      height: 200px;
      background-color: #fff;
      border-radius: 20px;
    /*主轴侧轴方向居中*/
      display: flex;
      justify-content: center;
      align-items: center;
}
.box>div{
      width: 40px;
      height: 40px;
      background-color: #000;
      border-radius: 50%;
}

2点

在这里插入图片描述

   .box{
       display: flex;
      justify-content:space-around;
    } 
   /*单独设置两个盒子的侧轴方向*/ 
   .box>div:nth-child(1){
       margin-top: 20px;
       align-self: flex-start;
    }
    .box>div:nth-child(2){
      margin-bottom: 20px;
      align-self:flex-end;
    }

3点

在这里插入图片描述

.box{
       display: flex;
      justify-content:space-around;
    }    
.box>div:nth-child(1){
       margin-top: 20px;
       align-self: flex-start;
    }
.box>div:nth-child(2){
      align-self: center;
    }
.box>div:nth-child(3){
      margin-bottom: 20px;
      align-self:flex-end;
    }

4点

在这里插入图片描述

分为上下两个盒子进行换行 在小盒子里面再对点数进行布局

<div class="box">
    <div class="box1">
      <div></div>
      <div></div>
    </div>
   <div class="box2">
     <div></div>
     <div></div>
   </div>
  </div>
.box{
display: flex;
      flex-wrap: wrap;
      /*改变主轴方向*/
      flex-direction: column;
      justify-content:space-around;
      align-items: center;
}
.box>div{
      width: 200px;
      display: flex;
      justify-content: space-around;
    }
.box>div>div{
      width: 40px;
      height: 40px;
      background-color: #000;
      border-radius: 50%;
      
    }

5点

在这里插入图片描述

<div class="box">
    <div class="box1">
      <div></div>
      <div></div>
    </div>

    <div></div>

    <div class="box2">
      <div></div>
      <div></div>
    </div>
  </div>
.box{
      display: flex;
      flex-wrap: wrap;
      /*改变主轴方向*/
      flex-direction: column;
      justify-content:space-around;
}
.box>div{
      width: 200px;
      display: flex;
      justify-content: space-around;
    }
.box>div>div,
    .box>div:nth-child(2){
      width: 40px;
      height: 40px;
      background-color: #000;
      border-radius: 50%;
    }
/*中间的盒子单独设置*/
.box>div:nth-child(2){
      align-self: center;
    }

6点

在这里插入图片描述

<div class="box">
    <div class="box1">
      <div></div>
      <div></div>
    </div>
    <div class="box2">
      <div></div>
      <div></div>
    </div>
    <div class="box3">
      <div></div>
      <div></div>
    </div>
.box{
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content:space-around;
}
.box>div {
      width: 200px;
      display: flex;
      justify-content: space-around;
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用flex布局制作骰子可以通过以下步骤实现: 1. 首先,设置一个容器元素,比如ul标签,作为骰子的外部容器。设置宽度、高度、背景颜色等样式属性,同时使用flex布局设置justify-content为space-around,flex-wrap为wrap,align-items为center,以实现骰子的布局效果。\[3\] 2. 在容器元素内部,使用li标签作为骰子的每个面。设置li元素的宽度、高度、边框、背景颜色、边框圆角等样式属性,同时使用flex布局使其内部元素水平垂直居中。\[3\] 3. 在每个li元素内部,使用span标签作为骰子的点数。设置span元素的宽度、高度、背景颜色、边框圆角等样式属性,以实现点数的样式效果。\[3\] 通过以上步骤,就可以使用flex布局制作一个骰子的效果。\[1\] #### 引用[.reference_title] - *1* [flex布局(骰子布局)](https://blog.csdn.net/weixin_54420874/article/details/123097960)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [【CSS flex布局】用flex写个骰子](https://blog.csdn.net/Hemri2580/article/details/127433171)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值