This property specifies the width of an element's rendering box for block-level and replaced elements. Negative values are not allowed.
In addition to the 'width' property, two other properties - 'min-width' and 'max-width' - place constraints on the allowed value for an element's rendering box width. The 'width' value is first computed without consideration for these other two properties. If the computed value is greater than the 'max-width' value or less than the 'min-width' value, the width is re-calculated using the 'max-width' or 'min-width' as the new 'width' value.
img.class1 {
height: 75px;
width: 75px
}