i create a registration page using tables.
i set the row style i.e width 100%
column as (20 2 28 20 2 28)% respectively for a row only
is it any short cut to add it to multiple rows
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Iftikar HussainPosted Jul 12, 2013, 2:57 AM
You can use CSS class for each row or you can define the id for your table and set style for tr in css as like below
#TblData tr
{
width:20px;
}
Regards,
Iftikar