Tag: interview
All the articles with the tag "interview".
JavaScript 面试题集
Published: at 08:00 AM```js a(typeof[1,2]); // object a(typeof 'string'); // string var f = true; a(typeof f); // boolean
CSS 面试题集
Published: at 08:00 AM:::tip 利用CSS进行元素的水平居中,比较简单,行内元素设置其父元素的text-align:center,块级元素设置其本身的 margin-left和margin-right为auto即可。设置垂直居中则有些麻烦,现整理记录如下。