Flex会覆盖img的高度和宽度

时间:2019-08-22 19:12:16

标签: css flexbox

我有一个使用0的容器。我想在左边有一个图像,在右边有一个引号,它们之间有15像素的flex。不幸的是,flex属性似乎覆盖了我设置的图像的指定宽度:

margin
.container {
  width:400px;
}
.quote-container {
  display:flex;
  flex-direction:row;
}
.image-container {
  display:block;
  width:64px;
  height:64px;
  border-radius:50%;
  overflow:hidden;
  margin-right:15px;
}

如何更改此CSS,以使图像保持64px,然后用引号填充剩余的空间?

0 个答案:

没有答案