1squareImage {
2 border: 1px solid #ddd; /* thickness and color of border */
3 border-radius: 4px; /* edge rounding of border */
4 width: 150px; /* width of image (px or % or auto) */
5 height: auto; /* height of image (px or % or auto) */
6}
1/* Keyword values */
2resize: none;
3resize: both;
4resize: horizontal;
5resize: vertical;
6resize: block;
7resize: inline;
8
9/* Global values */
10resize: inherit;
11resize: initial;
12resize: unset;