I have developed webform with some controls..
When i was developing that automaticall some Inline styles were created simultaneously..
Now i need to applicable CSS for that controls..
But its not showing in output..
Previous Code:
<
asp:DropDownList>
Revised Code:
<td>
<asp:DropDownList ID="ddSIREmp" runat="server" style="margin-bottom: 0px" TabIndex="2" cssclass="dlist">
asp:DropDownList>
my CSS class as follows
App.css
.ddList
{
font-family:Arial;
height:25;
width:100;
}
After applying css class to my control its not showing the control with revised effects..
How can i do this...

Dharmesh SharmaPosted Jan 20, 2012, 12:50 PM
height is not affect to dropdown
and width you can increase but when data has lenth
if you want to change design you can use this
and see thi links
http://uniformjs.com/
thanks