<template> <div> <div style="width: 400px;background-color: red"> <table style="table-layout: fixed;width: 100%;border-collapse: collapse"> <tr> <td style="background-color: yellow;width: 100px">这是一段中文这是一段中文这是一段中文这是一段中文</td> <td style="background-color: aqua;padding: 30px"> <div style="text-overflow: ellipsis;overflow: hidden;white-space: nowrap">这是一段中文这是一段中文这是一段中文这是一段中文</div> <div style="text-overflow: ellipsis;overflow: hidden;white-space: nowrap">这是一段中文这是一段中文这是一段中文这是一段中文</div> <div style="text-overflow: ellipsis;overflow: hidden;white-space: nowrap">这是一段中文这是一段中文这是一段中文这是一段中文</div> </td> </tr> </table> </div> </div> </template> <script> export default { name: "index" } </script> <style scoped> </style>