以一个div盒子为主题
<style>
.box{
width: 200px;
border: 1px border gold;
margin: 10px auto;
background-color: rgb(255, 179, 0);
}
</style>
<body>
<div class="box">
无善无恶心之体,有善有恶意之动,知善知恶是良知,为善去恶是格物。 -- 王阳明
</div>
</body>

首行缩进效果
.retract{
text-indent: 2em;
}

单行溢出隐藏效果
.text-omit-single{
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

多行溢出隐藏效果
.text-omit-more{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}

禁止选中文本
.text-not-select{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
文本字符不折行
word-break:break-all
word-wrap:break-word