Hi,
I want to create a page for monitoring levels. I need a really large font size. 200 - 300px if possible. I have tried all the css methods using %, px, and xx-large, but none make a difference.
Heres my code
I want to create a page for monitoring levels. I need a really large font size. 200 - 300px if possible. I have tried all the css methods using %, px, and xx-large, but none make a difference.
Heres my code
Code:
<html> <head> <style type="text/css"> #ch1{ position:absolute; top:0%; left:0%; border:solid #006666 3px; background: gray; height:30%; width:50%; text-align:right; font-size: xx-large; font-family:Arial, Helvetica, sans-serif; } #ch2{ position:absolute; top:0%; left:50%; border:solid #006666 3px; background: gray; height:30%; width:50%; text-align:right; font-size: 1000%; } #form{ font-size:200px; } </style> <script type="text/javascript"> </script> </head> <body> <form id="form"> <fieldset id="ch1"> <legend>Channel 1</legend> <div>0 mA </div> </fieldset> <fieldset id="ch2"> <legend>Chanel 2</legend> <h1>0 mA </h1> </fieldset> </form> </body> </html>
Comment