You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Border width border style a...

30 lines
786 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>border width border style and border color for all input controls</title>
<style type="text/css">
input {
display: block;
margin-bottom: 2px;
width: 250px;
border: solid blue;
border-width: 2px 4px 4px 2px;
}
</style>
</head>
<body>
<form method="post">
<label for="username">Username</label>
<input type="text" name="username" id="username" value="" /><br />
<label for="pword">Password</label>
<input type="text" name="pword" id="pword" value="" /> <br />
<input type="submit" name="Submit" value="Submit" class="buttonSubmit" />
</form>
</body>
</html>