Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { table-layout: fixed; width: 60px; } td { border: 2px solid #000; width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } </style> </head> <body> <table> <tbody> <tr> <td>Hello World</td> </tr> </tbody> </table> </body> </html>