Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
css面试题
介绍一下CSS的盒子模型
CSS的盒子模型有哪些:标准盒子模型、IE盒子模型CSS的盒子模型区别: 标准盒子模型:margin、border、padding、content IE盒子模型 :margin、content( border + padding + content )通过CSS如何转换盒子模型: box-sizing: content-box; /标准盒子模型/ box-sizing: border-box; /IE盒子模型/
img标签的title和alt有什么区别?区别一: title : 鼠标移入到图片显示的值 alt : 图片无法加载时显示的值区别二: 在seo的层面上,爬虫抓取不到图片的内容,所以前端在写img标签的时候为了增加seo效果要加入alt属性来描述这张图是什么内容或者关键词。
图片格式png:无损压缩,尺寸体积要比jpg/jpeg的大,适合做小图标。jpg:采用压缩算法,有一点失真,比png体积要小,适合做中大图片。gif:一般是做动图的。webp:同时支持有损或者无损压缩, ...
css面试题
介绍一下CSS的盒子模型
CSS的盒子模型有哪些:标准盒子模型、IE盒子模型CSS的盒子模型区别: 标准盒子模型:margin、border、padding、content IE盒子模型 :margin、content( border + padding + content )通过CSS如何转换盒子模型: box-sizing: content-box; /标准盒子模型/ box-sizing: border-box; /IE盒子模型/
img标签的title和alt有什么区别?区别一: title : 鼠标移入到图片显示的值 alt : 图片无法加载时显示的值区别二: 在seo的层面上,爬虫抓取不到图片的内容,所以前端在写img标签的时候为了增加seo效果要加入alt属性来描述这张图是什么内容或者关键词。
图片格式png:无损压缩,尺寸体积要比jpg/jpeg的大,适合做小图标。jpg:采用压缩算法,有一点失真,比png体积要小,适合做中大图片。gif:一般是做动图的。webp:同时支持有损或者无损压缩, ...