排序
Linux常用命令
一、基本命令 1.1 关机和重启 关机 shutdown -h now 立刻关机 shutdown -h 5 5分钟后关机 poweroff 立刻关机 重启 shutdown -r now 立刻重启 shutdown -r 5 5分钟后重启 reboot 立刻重启 1.2 帮...
2022 SSR最新教程
.ugb-a4b8014 .ugb-notification__item{border-width:8px !important;border-color:#ff0000 !important}.ugb-a4b8014 .ugb-notification__icon svg:not(.ugb-custom-icon){color:#ff0000 !impor...
如何去掉超链接的下滑线
我们经常会遇到这种问题,是在html中我们添加了一个超链接,但是文字下面就有一条下划线,这样在外观上就感觉很不舒服。所以我们就要去掉下划线让他变得更美观;比如: 我有下划线 文字中加下...
CSS3实现小米圆角logo
代码: <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <title>css3实现小米logo </title> <style type='text/css'> body{ backg...
移动端H5页面禁止长按保存图片,禁止长按选个文本
1.禁止长按保存图片: pointer-events:none; 2.禁止长按选择文本: css代码: -webkit-touch-callout:none; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:none; -ms-user...
仿ios13按钮
HTML: <div class='onoffswitch'> <input type='checkbox' name='onoffswitch' class='onoffswitch-checkbox' id='myonoffswitch' tabindex='0' checked> <label class='onoffs...