¿Hay alguna manera de limitar el ancho de un cuadro de texto para que sea igual a la propiedad MaxLength? En mi caso en este momento, el control de cuadro de texto se coloca en una celda de la tabla como en este fragmento:Cómo establecer el ancho del cuadro de texto para que sea igual que MaxLength en ASP.NET
<td class=TDSmallerBold style="width:90%">
<asp:textbox id="txtTitle" runat="server"
CausesValidation="true"
Text="Type a title here..be concise but descriptive. Include price."
ToolTip="Describe the item with a short pithy title (most important keywords first). Include the price. The title you provide here will be the primary text found by search engines that index Zipeee content."
MaxLength="60"
Width="100%">
</asp:textbox>
(Sé que no debería usar tablas HTML para controlar layout..another sujeta a ciencia cierta), pero hay una forma de restringir el ancho real al número máximo de caracteres permitidos en el cuadro escrito?