Applying Width to a ASP.Net Control

Hi, I have this style in my css file.


   #formlabel
   {
         width: 120px;
   }

During the design time, I set the CssClass property of the label to formlabel and I really see it, it really apply. However, if I am going to run my web project, the style that I created for the label does not apply. What is wrong with it?

applies for element with that id. For CssClass you need to define a class.

   .formlabel
   {
         width: 120px;
   }