<html>
<head>
<style>
div {
height: 50px;
width: 50px;
background-color: red;
scale: 2;
}
</style>
</head>
<body>
<h3>Scale property</h3>
<div></div>
<br>
<p>Scales div element to twice its original size.</p>
<p>Try to change scale value to 0.5 and see what happens.</p>
</body>
</html>