📜  减小移动视图 css 代码示例上的图像大小

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

代码示例1
.container {
  width: 50%;
  height: 200px;
  overflow: hidden;
}

.container img {
  max-width: 100%;
  height: auto;
  display: block;
}