<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body{
padding: 100px 100px;
}
h1{
width: 300px;
height: 50px;
border: 2px solid #000000;
/*文本强制不换行*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<h1>努力学习,努力锻炼身体</h1>
</body>
</html>