摘要: ## 文本溢出 ```html <style> /* 单行文本 */ .box{ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } /* 多行文本 */ .box{ word-break: break-all; dis 阅读全文