前段时间面试(包括阿里巴巴的电话面试),遇到过一些面试题,且面试中出现机率较高的提问 /笔试,有些答的不是很好挂掉了,今天终于有时间整理出来分享给大家,希望对大家面试有所帮助,都能轻松拿 offer。
主要分三部分:
html
、css
、js
; react/vue 等都归类于 js,内容来源于面试过程中遇到的
、在复习过程中看到认为值得加深巩固
、群友交流分享
的;如有理解的错误或不足之处,欢迎留言纠错、斧正,这里是@IT·平头哥联盟,我是首席填坑官
∙苏南(South·Su) ^_^~
有些面试官会问你对盒子模型的理解,在我们平时看到的网页中,内部的每一个标签元素它都是有几个部分构成的:内容(content)、外边距(margin)、内边距(padding)、边框(border),四个部分组成,当你说完这些面试官是不会满意这个答案的,因为还有一个重点(IE 盒模型和标准盒模型的区别)——— IE 盒模型的 content 包括 border、padding
link
标签引入,也是当下用的最多的一种方式,它属于 XHTML 标签,除了能加载 css 外,还能定义 rel、type、media等属性;@import
引入,@import 是 CSS 提供的,只能用于加载 CSS;style
嵌入方式引入,减少页面请求(优点),但只会对当前页面有效,无法复用、会导致代码冗余,不利于项目维护(缺点),此方式一般只会项目主站首页使用(腾讯、淘宝、网易、搜狐)等大型网站主页,之前有看到过都是这种方式,但后来有些也舍弃了小结:
link
页面被加载的时,link 会同时被加载,而@import
引用的 CSS 会等到页面被加载完再加载,且 link 是XHTML
标签,无兼容问题; link 支持动态 js 去控制 DOM 节点去改变样式,而 @import 不支持,
小结:块元素总是独占一行,margin 对内联元素上下不起作用;
localStorage
存储持久数据,浏览器关闭后数据不丢失除非用户主动删除数据或清除浏览器 /应用缓存;sessionStorage
数据在当前浏览器窗口关闭后自动删除。cookie
设置的 cookie 过期时间之前一直有效,即使窗口或浏览器关闭部分面试官可能还会再深入一些:1)、如何让 cookie 浏览器关闭就失效?——不对 cookie 设置任何正、负或 0 时间的即可;
2)、sessionStorage 在浏览器多窗口之间 (同域)数据是否互通共享? ——不会,都是独立的,localStorage 会共享;
3)、能让 localStorage 也跟 cookie 一样设置过期时间?答案是可以的,在存储数据时,也存储一个时间戳,get 数据之前,先拿当前时间跟你之前存储的时间戳做比较 详细可看我之前写的另一篇分享(小程序项目总结 )。
语义化是指根据内容的类型,选择合适的标签(代码语义化),即用正确的标签做正确的事情; html
语义化让页面的内容结构化,结构更清晰,有助于浏览器、搜索引擎解析对内容的抓取; 语义化的 HTML 在没有CSS
的情况下也能呈现较好的内容结构与代码结构; 搜索引擎的爬虫也依赖于 HTML 标记来确定上下文和各个关键字的权重,利于SEO
;
absolute
:绝对定位,元素会相对于值不为 static 的第一个父元素进行定位(会一直往父级节点查找),且它是脱离正常文档流、不占位的;fixed
:同样是绝对定位,但元素会相对于浏览器窗口进行定位,而不是父节点的 position (IE9 以下不支持);relative
:相对定位,元素相对于自身正常位置进行定位,属于正常文档流;static: position 的默认值,也就是没有定位,当元素设置该属性后( top、bottom、left、right、z-index )等属性将失效;inherit
:貌似没用过,查了一下文档“规定从父元素继承 position 属性的值”;<div class="div-demo"></div>
<style>
.div-demo{
width:100px;
height:100px;
background-color:#06c;
margin: auto;
position:absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
<style>
.div-demo{
width:100px;
height:100px;
background-color:#06c;
margin: auto;
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
}
</style>
<body class="container">
<div class="div-demo"></div>
<style>
html,body{
height:100%;
}
.container{
display: box;
display: -webkit-box;
display: flex;
display: -webkit-flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
}
.div-demo{
width:100px;
height:100px;
background-color:#06c;
}
</style>
</body>
<body class="container">
<div class="div-angles"></div>
<div class="div-angles right"></div>
<div class="div-angles bottom"></div>
<div class="div-angles left"></div>
<style>
html,body{
height:100%;
}
.container{
display: box;
display: -webkit-box;
display: flex;
display: -webkit-flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
}
.div-angles{
width: 0;
height: 0;
border-style: solid;
border-width:30px;
width:0px;
height:0px;
border-color: transparent transparent #06c transparent;
}
.right{
border-color: transparent transparent transparent #06c ;
}
.bottom{
border-color: #06c transparent transparent ;
}
.left{
border-color: transparent #06c transparent transparent;
}
</style>
</body>
::before
,之后则使用::after ; 在代码顺序上,::after
生成的内容也比::before 生成的内容靠后。
如果按堆栈视角,::after 生成的内容会在::before 生成的内容之上;input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: #fff;//设置成元素原本的颜色
background-image: none;
color: rgb(0, 0, 0);
}
//方法 2:由(licongwen )补充
input:-webkit-autofill {
-webkit-box-shadow: 0px 0 3px 100px #ccc inset; //背景色
}
linear-gradient
,缺点就是:样式多,遇到圆角这个方案就杯剧了; box-shadow:网上看到说使用 box-shadow 模拟边框,box-shadow: inset 0px -1px 1px -1px #06c;没用过,不过多评论,建议自己百度;贴上 3、5 两方案代码,也是目前公司一直在用的(预处理 SCSS):
//3、css3 的 background-image 本文由 @IT·平头哥联盟-首席填坑官∙苏南分享
@mixin border($top:1, $right:1, $bottom:1, $left:1, $color:#ebebf0) {
background-image:linear-gradient(180deg, $color, $color 50%, transparent 50%),
linear-gradient(90deg, $color, $color 50%, transparent 50%),
linear-gradient(0deg, $color, $color 50%, transparent 50%),
linear-gradient(90deg, $color, $color 50%, transparent 50%);
background-size: 100% $top + px, $right + px 100%, 100% $bottom + px, $left + px 100%;
background-repeat: no-repeat;
background-position: top, right top, bottom, left top ;
}
@mixin borderTop($top:1, $color:#ebebf0) {
@include border($top, 0, 0, 0, $color);
}
@mixin borderRight($right:1, $color:#ebebf0) {
@include border(0, $right, 0, 0, $color);
}
@mixin borderBottom($bottom:1, $color:#ebebf0) {
@include border(0, 0, $bottom, 0, $color);
}
@mixin borderLeft($left:1, $color:#ebebf0) {
@include border(0, 0, 0, $left, $color);
}
@mixin borderColor($color:#ebebf0) {
@include border(1, 1, 1, 1, $color);
}
//5、css3 的 transform:scale 本文由 @IT·平头哥联盟-首席填坑官∙苏南分享
@mixin borderRadius($width:1,$style:solid,$color:#ebebf0,$radius:2px) {
position:relative;
&:after{
left:0px;
top:0px;
right:-100%;
bottom:-100%;
border-radius:$radius;
border-style: $style;
border-color: $color;
border-width: $width+ px;
position:absolute;
display:block;
transform:scale(0.5);
-webkit-transform:scale(0.5);
transform-origin:0 0;
-webkit-transform-origin:0 0;
content:'';
}
}
重绘 /回流请看 JS 部分第七题
;公众号
吧,您的支持是我最大的动力。作者:苏南 - 首席填坑官
原文链接: https://blog.csdn.net/weixin_43254766/article/details/83119712
交流群:912594095,公众号:honeyBadger8
本文原创,著作权归作者所有。商业转载请联系@IT·平头哥联盟
获得授权,非商业转载请注明原链接及出处。
1
southSu OP 当你累的时候,别抱怨,
因为前方就是灿烂的曙光。 当你觉得辛苦的时候,别想着放弃, 因为比你优秀的人比你还努力。 当你觉得痛苦的时候,别想着逃避, 因为即使逃到地狱也是痛苦的… 正能量的人生,才是灿烂的人生。 每天都是全新的开始!——下午好,我是苏南,周末愉快,感谢您的阅读,愿你安好! |
2
silencefent 2018-11-04 16:52:29 +08:00
谢谢,我在苏北
|
3
qianmeng 2018-11-05 21:40:57 +08:00 via Android
不错,我竟然能看懂大部分
|
4
southSu OP |
5
southSu OP |
6
erwin985211 2021-06-10 14:26:43 +08:00
挖坟,刚被几道 css 面试题问到自闭
|