侧菜单文本很长

时间:2017-02-06 06:55:24

标签: html css css3

侧边菜单文字很长我希望这个文字设置在一行

enter image description here

"(选项:烹饪选项:Med,Spicy:MediumTopings:Chicken Lemon ...."

我需要这种对齐方式。

1 个答案:

答案 0 :(得分:0)

您需要的是ellipsis,请查看下面的代码,它应该适合您

div{
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
<div>
  some really long textsome really long textsome really long textsome really long textsome really long textsome really long textsome really long text
</div>