logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

CSS 拷问:水平垂直居中方法你会几种?

1、height + line-height这个是大家最熟悉的垂直居中的方式(之一),但是这种方法只能用于单行文本。2、line-height + line-block这种方法是将多行文本当成一行文本对待,即在文本的外层包一层div,然后将其设置为inline-block,然后再将这个div外层的容器,用line-height代替height即可。<div c

Warning: React does not recognize the `computedMatch` prop on a DOM element.

完整的警告是:Warning: React does not recognize the computedMatch prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase computedmatch instead..

超简单的C++去重、排序

一、去重函数unique头文件:algorithm,所以别忘了加上一句:#include <algorithm>unique的作用就是&am

ssh -T git@github.com出现Permission denied (publickey).

这种情况一般是因为生成秘钥文件时对文件进行了重命名,然而你自定义的这个名字并没有和ssh内部规定的名字保持一致,所以使用ssh -T git@github.com报错Permission denied (publickey).。解决方法如下:先执行:ssh-agent bash(一定要先执行这一步!)再执行:ssh-add ~/.ssh/xxx(xxx为你想要用的文件名)END~...

#github#git#ssh
到底了