i have input type=button

liunx

Guest
and i want to change its width whats to do?<!--content--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Example</title><br />
<style type="text/css"><br />
<!-- <br />
button {padding:3em} <br />
--><br />
</style><br />
<div><button>Hello</button></div><!--content-->That is a way to make all the buttons the same size. is you want to make one button a size, use this:<br />
<br />
<br />
<input type="button" style="width:XXX;" value="text to show everyone"> <br />
<br />
before using, change the XXX to the size in pixels that you want!<br />
remember, you can change the type to reset and submit as well, and, change the value, too!<!--content-->
 
Back
Top