網頁

2013年3月6日

[html, css] div hidden隱藏超出限定寬度的內容

css範例:
<style type="text/css">  
.hiddenOverFlow {
    width: 50px;
    border: #cccccc 1px dashed;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
</style>
< div class="hiddenOverFlow">
我是內容我是內容我是內容我是內容我是內容我是內容我是內容
< /div>