工作中常踩坑

1.不充许被爬虫抓取你的页面<meta name="robots" content="noindex,nofollow"> 

 

2 隐藏滚动条

.sider-menu {
height: 100%;
scrollbar-width: none; /* firefox */
-ms-overflow-style: none; /* IE 10+ */
overflow-x: hidden;
overflow-y: auto;
}

.sider-menu::-webkit-scrollbar {
display: none; /* Chrome Safari */
}

 

posted @ 2022-05-30 19:07  elliot1004  阅读(23)  评论(0)    收藏  举报