{"id":14123,"date":"2011-09-06T18:57:17","date_gmt":"2011-09-07T01:57:17","guid":{"rendered":"http:\/\/css-tricks.com\/?page_id=14123"},"modified":"2023-01-27T10:51:41","modified_gmt":"2023-01-27T18:51:41","slug":"transform","status":"publish","type":"page","link":"https:\/\/css-tricks.com\/almanac\/properties\/t\/transform\/","title":{"rendered":"transform"},"content":{"rendered":"\n

The transform<\/code> property allows you to visually manipulate an element by skewing, rotating, translating, or scaling:<\/p>\n\n\n\n

.element {\n  width: 20px;\n  height: 20px;\n  transform: scale(20);\n}<\/code><\/pre>\n\n\n\n\n\n\n\n

Even with a declared height and width, this element will now be scaled to twenty times its original size:<\/p>\n\n\n\n