A couple of double yellow lines appear beneath my codes in vscode, It gives a message which says:
a two dimensional transformation is applied to an element through "transform" property. this property contain a list of transform functions similar to SVGs. define the standard property 'transform' for compatibility CSS(vendorprefix). The code goes as follows:
and by the way for the attribute scale how can we double it (2, 2), why there are two numbers, can we double a div by the vertical and horizontal sides apart??
<html>
<head>
<style>
#d1
{
width: 200px;
height:200px;
background-color: aquamarine;
-webkit-transform: rotate(10deg);
-moz-transform: rotate(10deg);
-o-transform: rotate(10deg);
-ms-transform: rotate(10deg);
border-radius: 35px;
-webkit-transform: translate (450px,250px);
-webkit-transform: scale(2,2);
-webkit-transform: skew (30deg , 20deg);
}
</style>
</head>
<body>
<div id="d1">
Hanieh a forgiving girl
</div>
</body>
</html>