“уменьшить размер div” Ответ

CSS Размер изображения Регулируйте

squareImage {
  border: 1px solid #ddd;	/* thickness and color of border */
  border-radius: 4px;		/* edge rounding of border */
  width: 150px;				/* width of image (px or % or auto) */
  height: auto;				/* height of image (px or % or auto) */
}
Happy Hornet

размер CSS

#myID {
  height: 100px; /* Sets the height */
  width: 200px; /* Sets the width */
}
/* or... */
.myClass {
  height: 220px; /* Sets the height */
  width: 40px; /* Sets the width */
}
/* They both work! */
Determined Programmer

уменьшить размер div

.shrink{
-webkit-transform:scale(0.5);
-moz-transform:scale(0.5);
-ms-transform:scale(0.5);
transform:scale(0.5);
}
Puzzled Polecat

Ответы похожие на “уменьшить размер div”

Вопросы похожие на “уменьшить размер div”

Больше похожих ответов на “уменьшить размер div” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования