c# - how do i change the width of my textbox in css? -
i added asp.net textbox webpage , cover css shown below
<tr> <td id="policeprofileachievement" colspan="2" align="center"> <b>achievement : <asp:textbox id="txtachievement" runat="server" readonly="true" textmode="multiline"></asp:textbox> <br /> </td> </tr>
in source code have added width textbox. in css, added didnt resize textbox width
#policeprofileachievement [type="text"] { position:absolute; margin-top:250%; left:0%; width:150px; }
and/or
i removed policeprofileachievement css , added ( recommended many )
#txtachievement{ position:absolute; margin-top:250%; left:0%; width:150px; }
but there doesn't seem have changes on textbox size either
is there other way resize textbox size?
regards
.txtbox { position:absolute; margin-top:250%; left:0%; width:150px; }
Comments
Post a Comment