在图片旁边对齐卡片文字

时间:2019-09-14 08:53:20

标签: css

上周,我与Gatsby和Prismic一起深入了React.js。我已经创建了博客卡片,并使用flex:wrap显示(检查图像),现在我想水平显示博客卡片。

Attached Image

如果我现在做:

Attached Image

我的代码:

Cardlist.js:

<React.Fragment>
  <div className="cardslist">{children}</div>

  {/* --- STYLES --- */}
  <style jsx>{`
    .cardslist {
      text-align: center;

    }

    @from-width desktop {
      .cardslist {
        display: flex;
        flex-wrap: wrap
      }
    }
  `}</style>
</React.Fragment>

1 个答案:

答案 0 :(得分:0)

尝试以下操作:flex-direction: row;