word wrap in HTML TD

Jak
Jak
Member
858 Points
132 Posts

word wrap in HTML TD

Views: 8950
Total Answered: 3
Total Marked As Answer: 0
Posted On: 15-Jan-2015 21:58

Share:   fb twitter linkedin
Answers
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

Use this attribute in td

<td nowrap="nowrap">some text</td>
Posted On: 28-Jan-2015 21:12
Stevan
Stevan
Member
310 Points
20 Posts
         

Use following:

table{
    table-layout:fixed;
    border-collapse:collapse;
}
td{
    word-wrap: break-word;
}
Posted On: 22-Dec-2018 09:21
Rashmi
Rashmi
Member
820 Points
17 Posts
         

Following will be the best one:

white-space:nowrap;
Posted On: 22-Dec-2018 09:25
 Log In to Chat