blob: f593b9220a323464a0384fa6db13e26c8f6fe19a [file] [log] [blame]
<html>
<head>
<style>
body { overflow: hidden; }
#rotate {
width: 1300px;
height: 100px;
background-color: purple;
transform:rotate(110deg);
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>