Yet another bootstrap theme.

2020-06-04
使用Scp从远程服务器 上传/下载文件

使用scp 向远程服务器上传文件

1
2
// 把本地 /web/xxx 目录上传到服务器的 /opt/web/ 目录下
scp -r /web/xxx root@192.168.0.101:/opt/web

使用scp 向远程服务器下载文件

1
2
// 把服务器的/opt/web/ 目录下载到本地 /web/xxx 目录中
scp -r root@192.168.0.101:/opt/web/ /web/xxx
Read More

2020-06-04
移动端 Placeholder 与光标不居中

移动端 Placeholder 与光标 不居中

1
2
3
input {
line-height: normal;
}

通过设置 line-height 行高 为 normal 可以将移动端placeholder 居中显示

Read More