I'm trying to change some of my ASP.Net pages to use s and replace some s.
I had some trouble aligning the labels and text boxes and then I found this awesome JSFiddle: http://jsfiddle.net/p54SE/
I had no idea that CSS could be used to give specific instructions to a Label and an input[type=text] separately. I have referred to these as subtypes of CSS, but if you know the correct terminology please inform me.
How would I be able to recreate this with:
<div class='label-wrapper'>
<asp:Label runat="server" ID="lbl_Title" Text="Title" />
<asp:TextBox runat="server" ID="tb_Title" />
</div>
I was so certain just changing the name would work, but no luck.
div.label-wrapper > asp:Label {