At 11:10 AM -0800 1/2/08, Jim Lucas wrote:


I prefer this approach instead.

<html>
<head>
<title></title>
        <style>
        button,
        input[type=submit],
        input[type=reset],
        input[type=button] {
                width:  250px;
        }
        </style>
</head>
<body>
<form>
        <input type="submit" value="Submit">
<form>
</body>
</html>

I prefer this:

in css

.button
   {
   width: 5em;
   }

in html

<input  type="submit" class="button" name="submit" value"A">

Cheers,

tedd
--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to