Make the Textbox as Label using CSS
This is a simple tip to make the textbox as label in the Web Pages.We need to just add a simple CSS to the input text.See code snippet
Here I have mentioned the background-color and border-color as "white".In my application the background-color is white.So according to your background-color change it.Now Apply that to the textbox.See this Image
.textboxAslabel {
border:none;
background-color:#FFF;
border-color:#FFF;
}
Here I have mentioned the background-color and border-color as "white".In my application the background-color is white.So according to your background-color change it.Now Apply that to the textbox.See this Image
Comments
Post a Comment