blob: f2504fdb0b40e63b4cb39ae9da5ac3ffc5284124 [file] [log] [blame]
<html>
<head>
<style>
body { overflow: hidden; }
#rotate {
width: 1300px;
height: 100px;
background-color: purple;
transform:rotate(80deg);
border-left: 2px solid red;
border-top: 2px solid blue;
border-right: 2px solid cyan;
border-bottom: 2px solid green;
}
</style>
</head>
<body>
<div id="rotate"></div>
</body>
</html>