Usually when we set width as percentage for textboxes, we'll face an issue in IE. ie,while displaying long text, the length of the textbox will increase as according to the text length.So the whole design will collapse.Here is the solution,
Use css class for the table which contains the textbox,
.table
{
table-layout: fixed;
}
0 comments:
Post a Comment