Flex| 流式 布局 ,让元素两端居左,居右,别再用float:right了

主要代码是

.parent {
	justify-content: space-between;
}


完整代码案例

.tasklist{ 
  height: calc(80vh);
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ccc;
  border-radius: 4px;
  }

  .taskhead {
    display: flex;
    height: 50px;
    align-items: center;
     justify-content: space-between;
  }


修改前
image

修改后
image

posted @ 2023-04-13 22:14  皮豪  阅读(84)  评论(0编辑  收藏  举报