1. 程式人生 > >css3 文字隱藏 Text Overflow屬性

css3 文字隱藏 Text Overflow屬性

<style>
      .test {
				white-space: nowrap;
				width: 12em;
				overflow: hidden;
				border: 1px solid #000000;
			}
      .test1{
                text-overflow:ellipsis;
            }
      .test2{
                text-overflow:clip;
            }
</style>
<body>
       <p>div 使用 &quot;text-overflow:ellipsis&quot;:</p>
	     <div class="test test1">啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊</div>
	   <p>div 使用 &quot;text-overflow:clip&quot;:</p>
		 <div class="test test2">啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊</div>
</body>