CSS TRANSFORM PROPERTY
HTML <! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Document </ title > < link rel = "stylesheet" href = "STLE.CSS" > </ head > < body > < div ></ div > </ body > </ html > CSS div { height : 100px ; width : 100px ; background-color : aqua ; border : 2px solid gold ; position : absolute ; top : 60px ; left : 50px ; transform : rotate ( 45deg ); transform : scale ( 0.5 , 1 ); } div:hover { background-color : red ; color : aliceblue ; font-size : 20px ; translate : 20px ; transform : skew ( 45deg ); } d...