Is it possible to wrap text inside <td> ?

by ruxi
1 replies
  • WEB DESIGN
  • |
Hello,
I am having problem while using text inside td. I want to wrap up the text automatically when td's width is exceeded. How is it possible using html or css? Please help me if anybody is having answer of it. Thanks in advance.
#&lttd&gt #<td> #inside #text #wrap
  • Profile picture of the author LAG
    Originally Posted by ruxi View Post

    Hello,
    I am having problem while using text inside td. I want to wrap up the text automatically when td's width is exceeded. How is it possible using html or css? Please help me if anybody is having answer of it. Thanks in advance.
    You can write:
    <td width="200">Your words here</td> - using an exact pixel width

    Or:
    <td width="50%">Your words here</td> - using a percentage of width

    The text will wrap automatically.

    Hope that helps,

    Leslie
    {{ DiscussionBoard.errors[1370797].message }}

Trending Topics