30 lines
559 B
HTML
30 lines
559 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<style>
|
|
.box {
|
|
border: 1px solid #000;
|
|
transform: scaleY(0.5)
|
|
}
|
|
/* 画省略号 */
|
|
.box p{
|
|
overflow:hidden;
|
|
text-overflow:ellipsis;
|
|
white-space:nowrap;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="box">
|
|
<p>无二无别飞机文成为比较好</p>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |