0

Is it possible to make text overflow in a table cell?

Like this:

+TABLE-----------------------------------+
| +cell1-----+ +cell2-----+ +cell3-----+ |
| |          | |          | |          | |
| |          | |Example text overflow  | |
| |          | |          | |          | |
| |          | |          | |          | |
| +----------+ +----------+ +----------+ |
+----------------------------------------+

I tried overflow:visible and white-space:nowrap but not working.

abc123
  • 95
  • 4
  • 11

1 Answers1

0

You could overflow the text outside the td but you need to insert a div tag like this

<td><div>your text goes here</div></td>

See this demo

Bhojendra Rauniyar
  • 83,432
  • 35
  • 168
  • 231