作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在设置 AvatarGroup
的 max
属性后,添加的额外头像不符合其他头像的高度。
<AvatarGroup max={3}>
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" sx={{ width: 24, height: 24 }}/>
<Avatar alt="Travis Howard" src="/static/images/avatar/2.jpg" sx={{ width: 24, height: 24 }}/>
<Avatar alt="Cindy Baker" src="/static/images/avatar/3.jpg" sx={{ width: 24, height: 24 }}/>
<Avatar alt="Agnes Walker" src="/static/images/avatar/4.jpg" sx={{ width: 24, height: 24 }}/>
<Avatar alt="Trevor Henderson" src="/static/images/avatar/5.jpg" sx={{ width: 24, height: 24 }}/>
</AvatarGroup>
会给出这样的结果
有没有办法让添加的头像服从通用尺寸?
最佳答案
您可以从父级覆盖所有 Avatar
组件(包括末尾的默认组件)的样式:
<AvatarGroup
max={4}
sx={{
'& .MuiAvatar-root': { width: 24, height: 24, fontSize: 15 },
}}
>
关于html - 更改 "overflow avatar"的大小以匹配 AvatarGroup 中的其他头像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70020398/
我想知道是否有一种方法可以将 ToolTip 组件添加到气泡中,以显示 Avatar Group 组件中的其他头像。这是组件如何呈现的示例:(图片来自 Material UI 文档(https://m
在设置 AvatarGroup 的 max 属性后,添加的额外头像不符合其他头像的高度。 会给出这样的结果 有没有办法让添加的头像服从通用尺寸? 最佳答案 您可以从父
我是一名优秀的程序员,十分优秀!