I have a simple example of a div, which I want to rotate 180 degrees horizontally, my example rotates vertically which I do not want
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 200px;
height: 100px;
background-color: yellow;
/* Rotate div */
-ms-transform: rotate(27deg); /* IE 9 */
-webkit-transform: rotate(37deg); /* Chrome, Safari, Opera */
transform: rotate(37deg);
}
</style>
</head>
<body>
<div>Hello</div>
<br>
</body>
</html>