During my testing of rotation on a div element, I observed that applying CSS to rotate the div resulted in aliasing, which gave it an awkward appearance. You can view the Fiddle demonstration here:
CSS:
.alaised {
width:200px;
height:200px;
border:2px solid green;
transform:rotate(-8deg);
-webkit-transform:rotate(-8deg);
-moz-transform:rotate(-8deg);
margin:50px;
}
In the fiddle, you will notice that when the div is rotated, it appears aliased, but when it's not rotated and hovered over, it appears anti-aliased.
I've been searching for solutions online and attempted adding shadows with small widths and the same color as a workaround, but even the shadow appeared aliased.
Note: This issue seems more prominent on screens with resolutions of 1024x768 or lower, which are commonly used these days.