我有一个使用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,然后用引号填充剩余的空间?