CSS瀑布流

html

css

      .flex {
        background-color: rgb(224, 224, 224);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 12px 0;
      }
      .flex .l_flex {
        display: flex;
        flex-direction: column;
        width: 48%;
      }
      .flex .r_flex {
        display: flex;
        flex-direction: column;
        width: 48%;
      }
      .flex .item {
        width: 100%;
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        background-color: white;
        margin-bottom: 10px;
      }

你可能感兴趣的:(CSS瀑布流)