# CSS样式
# 隐藏滚动条
Chrome,Safari
.editor-upload-simple::-webkit-scrollbar { width: 0 !important }
IE 10+
.editor-upload-simple { -ms-overflow-style: none; }
Firefox
.editor-upload-simple { overflow: -moz-scrollbars-none; }
# 禁止鼠标左右键
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()"> </body>
← SpringBoot Vue →