Or you can do it using some kind of CSS, however I am sure that you will not be able to run it in IE any time soon. On the other hand, the fact is that the text can be selected: D
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Testing min-width and max-width</title> <style type="text/css"> .num1 { -webkit-transform: translate(0px, 30px) rotate(-35deg); } .num2 { -webkit-transform: translate(0px, 25px) rotate(-25deg); } .num3 { -webkit-transform: translate(0px, 23px) rotate(0deg); } .num4 { -webkit-transform: translate(0px, 25px) rotate(25deg); } .num5 { -webkit-transform: translate(0px, 30px) rotate(35deg); } span {display: inline-block; margin: 1px;} </style> </head> <body> <div style="width: 300px; height: 300px; margin: 50px auto"> <span class="num1">a</span><span class="num2">b</span><span class="num3">c</span><span class="num4">d</span><span class="num5">e</span> </div> </body> </html>
Jakub Hampl May 15, '10 at 18:00 2010-05-15 18:00
source share