stretchy-mover-1-ref.html (772B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Stretchy mover</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 6 <link rel="stylesheet" href="/fonts/ahem.css" /> 7 <style> 8 @font-face { 9 font-family: operators; 10 src: url("/fonts/math/operators.woff"); 11 } 12 math { 13 font: 25px/1 Ahem; 14 } 15 mo { 16 font-family: operators; 17 } 18 #container { 19 width: 800px; 20 height: 600px; 21 overflow: hidden; 22 background: lightblue; 23 } 24 </style> 25 </head> 26 <body> 27 <div id="container"> 28 <math display=block> 29 <mover> 30 <mo stretchy="true">→</mo> 31 <mn>BBBBBBBBB</mn> 32 </mover> 33 </math> 34 </div> 35 </body> 36 </html>