Files
ClassContent/历届学生/罗朝/项目练习/小说app/demo.html
2024-09-27 02:06:13 +08:00

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>