I am trying to write a contact form, but my shortcut widths are not used in Firefox or Chrome. IE seems to be working fine (this time). Here is my html
<form name="" id="" action="" method="post"> <div id="my_form"> <div> <label for="username">Username:</label> <input type="text" name="username" id="username" /> </div> <div> <form>
and here is my CSS
#my_form div label{width:200px;display:inline-block;}
any ideas how i can force the label width they seem to be crumbling
source share