📌  相关文章
📜  导航栏上圆形图像的高度和宽度应该是多少 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:24.194000             🧑  作者: Mango

代码示例1
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
}

.chats {
  height: 20%;
  width: 100%;
  background: red;
}

.chat {
  float: left;
  width: 20%;
  height: 100%;
  background: yellow;
  display: flex;
  align-items: center;
}

.img {
  margin: auto;
  width: 10vh;
  height: 10vh;
  background: blue;
  border-radius: 50%;
}