CSS透明色 background-image:-ms-linear-gradient(rgba(255,255,255,.50) 0,rgba(255,255,255,.50) 100%) !important; 10年前 2615 浏览
git设置用户名,密码 git config --global user.name "lubin" git config --global user.email [email protected] 10年前 4048 浏览
apache 禁止浏览目录 当我们不想让别人直接访问某些目录时:#Options Indexes FollowSymLinks 改成Options -Indexes FollowSymLinks <Direc 10年前 2683 浏览
vim设置缩进,缩进大小 编辑vim配置文件:vim /etc/vimrc 添加几行: set nu//设置行号 set autoindent set ts=4 //这个是设置tap的大小为4个空格 10年前 3045 浏览
IPMI Could not open device 我们使用ipmi公式,出现以下错误:IPMI Could not open device当提示:[root@localhost ~]# ipmitool&n 10年前 4383 浏览
js验证汉字 使用js验证汉字,只允许输入汉字:var str=document.getElementById("name").value; var reg = /^[\u4e00-\u9fa5]+$/i; if ( 10年前 3085 浏览
html中文显示 html乱码 html输出中文,在html头部,即head标签里面,加入以下:<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 或者 <meta 10年前 2890 浏览
CSS 根据屏幕大小设置样式 使用css 的@media screen属性:<!-- 浏览器宽度不超过1030px时 --> @media screen and (max-width: 1030px) { &nbs 10年前 3975 浏览