CSS code for scale method

<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
        <style>
            div.first{
    width:200px;
    height:100px;
    background-color: lightgreen;
    transform: scale(0.1,0.1);
    color:white;
}
div.second{
    width:200px;
    height:100px;
    background-color: lightgreen;
    transform: scale(1.5,1.5);
    color:white;
}

        </style>
    </head>
    <body>
        <div class="first"></div>
        <div class="second"></div>
    </body>
</html>

OUTPUT



Comments