1.删除线
方法一:css样式
1 text-decoration:line-through;
方法二:html标签
1 <s>我是删除线</s>
2.设置滚动条
注意:需要先设置好定高,否则无效
1 .box {
2 width: 500px;
3 height: 300px;//需要设置成定高,超出时会出现滚动条
4 overflow-x: hidden;//x轴进行隐藏
5 overflow-y: scroll;//设置y轴方向出现滚动条
6 line-height: 30px;
7 text-align: center;
8 }
9 //隐藏滚动条
10 .box::-webkit-scrollbar {
11 display: none;
12 }
原文:https://www.cnblogs.com/lujunzhan/p/13437052.html