JSFIDDLE:
HTML:
<div class="study-box folder-box">
<div class="folder-box-title">
<div> TEST TEST TEST TEST TEST </div>
</div>
</div>
JS:
.folder-box-title > div {
margin-left: 10px;
margin-bottom: 7px;
-ms-text-overflow: ellipsis !important;
-o-text-overflow: ellipsis !important;
text-overflow: ellipsis !important;
white-space:nowrap;
}
.study-box {
width: 200px;
height: 120px;
margin: 2px;
color: white;
background-color: blue;
text-align: center;
font-size: 15px;
}
我究竟做错了什么?