
<style type="text/css">
.wrapper1 {
height: 1px;
background-image: linear-gradient(110deg, rgb(83, 24, 24) 50%, transparent 50%);
}
.wrapper2 {
height: 1px;
margin-top: 20px;
background-color: cyan;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
}
.wrapper3 {
margin-top: 20px;
height: 100px;
border: 1px solid #000;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scale(.5, .5);
transform: scale(.5, .5);
}
</style>
</head>
<body>
<div class="wrapper1"></div>
<div class="wrapper2"></div>
<div class="wrapper3"></div>
</body>