我有一個表格單元格中的內容。裏面的內容總是居中,在中間。但是當單元格比我想要截斷文本的內容小時。但它不起作用。細胞有一個固定的寬度和高度,但是當我截斷它時,細胞很大。 有沒有人有想法?或者有可能使用jQuery?CSS:截斷表單元格和中間內容
HTML/CSS
<table>
<tr>
<td><a href="">
<div class="ev orange">
<div class="ev_text">EURO VI NORM PRODUCT MODIFICATION, M1 LANE KEEPING ASSIST N2 & M2</div>
</div>
</a>
</td>
</tr>
</table>
.ev {
color: #000;
cursor: pointer;
transition: box-shadow 0.1s linear;
/* line-height: 28px; */
position: relative;
height: 51px;
display: table;
border-left: 1px solid black;
border-right: 1px solid black;
font-size: 8px;
width: 20px;
height: 20px;
}
.ev_text {
color: #000;
cursor: pointer;
transition: box-shadow 0.1s linear;
line-height: 17px;
position: relative;
max-height: 51px;
min-height: 51px;
overflow: hidden;
line-height: normal;
display: table-cell;
vertical-align: middle;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
這裏是我的小提琴: http://jsfiddle.net/vnx0sb2L/1/
您是否嘗試在您的.ev_text類中添加最大寬度?像[這](http://jsfiddle.net/vnx0sb2L/4/) – Danield 2014-10-29 12:39:49
是的,但我想顯示多個文本行。 – drno 2014-10-29 13:12:33