1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <head>
<style>
#test input {
width: 20px;
font-weight: bold;
background-color: red;
}
#test2 input.style2 {
width: 50px;
font-weight: normal;
background-color: #FFFFFF;
}
#test input.button {
width: 80px;
font-weight: bold;
background-color: #C0C0C0;
}
#test2 input.button2 {
width: 80px;
font-weight: bold;
}
</style>
</head>
<body>
<div id="test">
<input type="text" value="test" />
<input type="password" value="test" />
<input class="button" type="button" value="test" />
</div>
<br />
<div id="test2">
<input class="style2" type="text" value="test2" />
<input class="button2" type="button" value="test2" />
</div>
</body> |