css+html 实现带箭头的流程步骤条
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .navs { height: 50px; line-height: 50px; padding-top: 10px
阅读全文
CSS美化 垂直滚动条
摘要:HTML页面代码 <div class="section"> <h2>Title</h2> <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Perspiciatis non, inventore incidunt repudi
阅读全文
项目 部署到服务器中 访问 带中文的 项目资源路径时 404
摘要:首先资源是在项目的内部,项目在本地好好的 放到linux 中发现访问英文路径的资源没有问题,但是访问带中文的资源就404. 将服务器的编码改成GBK 解决问题 在设置编码的文件中加上这两行配置 LANG="zh_CN.GBK" LC_ALL="zh_CN.GBK" 我的是centos7 所以是 vi
阅读全文
MySQL 给root开启远程连接
摘要:一、连接数据库 mysql -u root -p // 在下一行输入密码 二、为root用户开启远程连接mysql数据库(注意要带分号) grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
阅读全文