Given the following:
<code>
<style>
button.rolodex{width: "50";}
</style>
</head>
<body bgcolor="gray">
<!-- Start of FORM -->
<form method="post" action="">
<input type="button" name="" value="A" class="rolodex">
</code>
Shouldn't the width of the button be 50? How would you define and reference a class to set the button width?
Also, how would you define and reference a class to assign the bgcolor in a table cell <TD>?
Thanks
<code>
<style>
button.rolodex{width: "50";}
</style>
</head>
<body bgcolor="gray">
<!-- Start of FORM -->
<form method="post" action="">
<input type="button" name="" value="A" class="rolodex">
</code>
Shouldn't the width of the button be 50? How would you define and reference a class to set the button width?
Also, how would you define and reference a class to assign the bgcolor in a table cell <TD>?
Thanks