目次
我遇到有意思的题会继续更新,如发明我的解答有题目,请示知,万分感谢。
如以为对你有协助,请帮助点个赞,感谢。
- css的选择器,权重
- ie和其他浏览器下,盒模子的区分
- 盒模子相互转化
- 元素程度垂直居中
- 左侧牢固,右侧自适应
- 摆布牢固,中心自适应,高度通屏
- 外边距margin
- 边框圆角border-radius
- border-color
- margin负值
- margin一些坑
- dispaly有那些值
- 伪类
- css3新增了那些属性
- 陈词滥调的hack
- 消灭浮动
- html5新增了那些标签
- <!Doctype> 有什么作用?
- link @import 有什么区分
- lable有什么用
- cookies,sessionStorage 和 localStorage 的区分?
- WebSocket和socket有什么关联? WebSocket和ajax的区分?
- 正则考证邮箱
- 闭包,你在开辟中要常常运用闭包吗?为何?
- 数据类型
- 猎取元素自定义属性有什么区分?
- 继续都有哪些
- 编程题(测试)
css篇
css的选择器,权重
答:id,class,标签,组合,继续,伪类,* !important > style > id > class > 标签 > *
ie和其他浏览器下,盒模子的区分
答:- ie下的盒模子为 content(width+height+padding+border)+ margin - 现实大小:content - 规范盒模子为content(width+height) + padding + border + margin - 现实大小:content+padding+border
盒模子相互转化
答:- 给须要转化的元素设置 box-sizing:border-box; - content-box: 这是由 CSS2.1 划定的宽度高度行动。宽度和高度离别应用到元素的内容框。在宽度和高度以外绘制元素的内边距和边框。 - border-box : 为元素设定的宽度和高度决议了元素的边框盒。就是说,为元素指定的任何内边距和边框都将在已设定的宽度和高度内举行绘制。经由过程从已设定的宽度和高度离别减去边框和内边距才获得内容的宽度和高度。 - inherit : 划定应从父元素继续 box-sizing 属性的值。
元素程度垂直居中
答:- css2 position:absolute; top:50%; left:50%; margin-left:-widht/2; margin-top:-height/2; - css2 position:absolute; top:0; left:0; right:0; bottom:0; margin:auto; - css3 display:flex; justify-content:center; align-items:center; - css3 position:absolute; top:50%; left:50%; transfrom:translate(-50%,-50%);
左侧牢固,右侧自适应
答:- css2 div1{float:left;} div2{overflow:hidden;}; - css2 div1{float:left;} div2{ margin-left:-div1.width;} - css3 parent{dispaly:flex;} div1{wdith:200px;} div2{flex:1};
摆布牢固,中心自适应,高度通屏
答:// 规划 <div class="wrap"> <div class="left"></div> <div class="right"></div> <div class="center"></div> <div> // style html,body,.wrap{height:100%;overflow:hidden; background:green;} .left,.right,.center{height:100%;} .left,.right{width:100px;background:aqua;} .left{float:left;} .right{float:right;} .center{background:red}
外边距margin
margin:10px; // 高低摆布 10px margin:10px 10px; // 高低10px 摆布10px margin:10px 10px 10px; // 上10px 摆布10px 下10px margin:10px 10px 10px 10px; // 上10px 右10px 下10px 左10px margin:10px 10px 10px 10px 10px; // 坑 margin:10px 10px 10px 10px 10px 10px; // 坑 margin:10px 10px 10px 10px 10px 10px 10px; // 坑 margin:10px 10px 10px 10px 10px 10px 10px 10px; // 坑
边框圆角border-radius
// 左上右上右下左下 10px border-radius:10px; // 左上右下10px 右上左下10px border-radius:10px 10px; // 左上10px 左下右上10p 右下10px border-radius:10px 10px 10px; // 左上10px 右上10px 右下10px 左下10px border-radius:10px 10px 10px 10px; // 左上左10px/左上上10px 右上右10px/右上上10px 右下右10px/右下下10px 左下左10px/左下下10px border-radius:10px 10px 10px 10px / 10px; // 左上左、右下右10px/左上上、右下下10px 右上右、左下左10px/右上上、左下下10px border-radius:10px 10px 10px 10px / 10px 10px; // 左上左10px/左上上10px 右上右、左下左10px/右上上、左下下10p 右下右10px/右下下10px border-radius:10px 10px 10px 10px / 10px 10px 10px; // 左上左10px/左上上10px 右上右10px/右上上10px 右下右10px/右下下10px 左下左10px/左下下10px border-radius:10px 10px 10px 10px / 10px 10px 10px 10px;
border-color
如题:以下代码末了天生出来是什么。
width:0px;
height:0px;
border-width:60px;
border-style:solid;
border-color: red transparent transparent transparent;
margin负值
如题:有一组li,它们宽高为100px,边框为10px灰色,每个li之间的间隔为10px,鼠标滑过的时刻,让其边框色彩改变成赤色,团体排版不能乱,而且边框要展现全。(用css完成)
答:
ul>li*N //html li{ width:100px; height:100px; border:10px solid #ccc; margin:-10px 0 0px -10px; position:relative; } li:hover{ border:10px solid red; z-index:9; }
margin一些坑
如题:有两个div,宽高为100px,边框为10px,div1=margin:10px 20px 30px40px,div2=margin:40px 30px 20px 10px,叨教这两个元素中心的间隔为像素;
答:
高低规划(div1在上div2鄙人):40px; 高低规划(div2在上div1鄙人):20px; 摆布规划(div1在左div2在右):30px; 摆布规划(div2在左div1在右):70px;
如题:有两个div,父子级关联,父级:parent,子级:child;parent宽高为100px,child宽高为50p,外边距为50px;child和parent都在什么位置?(浏览器的margin和padding已清零)。
答:
child在parent右上角; parent: 距顶部50px,距左0px; child: 间隔顶部50px, 距左50px,底部间隔父级底部50px;
如题:有两个div,兄弟关联,div1在上,div1宽高100px,加float:left,div2宽高50px,margin:50px,div1和div2在什么位置?
手动加重点:怎样展现的?答:
div1掩盖div2。 div1:距上50px,距左0px,距下和右0px; div2:距上50px,距左50px,距下和右50px;
附加:假如child外边距为100px,他们的位置呢?
dispaly有那些值
答:// 经常使用值: block|inline|inline-block|none|table|list-item| inherit
伪类
答:经常使用: :link | :hover | :active | :visited | :after | :before | :first-child | :last-child :nth-child()
css3新增了那些属性
答://个人经常使用: transform:rotate(90deg); // 扭转 transform-origin:center center; // 定位中心点 transform:translate(x,y); // 在x和y轴上定位 transtion:.1s; // 过渡动画 animation: obj 2s; // 动画 border-radius:5px; // 边框圆角 background-size:100% 100%; // 背景大小 box-show:0 0 0 #000; // 暗影
陈词滥调的hack
答:width:100px; // 一切都辨认 width:100px\9; // ie6、ie7、ie8 *widht:100px; // ie6、ie7 _width:100px; // ie6 widht:100px\0; // ie8
消灭浮动
答:.clear{zoom:1;}; .clear:after{content:''; dislay:block; clear:both; }
HTML篇
html5新增了那些标签
答:video canvas header footer section nav
<!Doctype> 有什么作用?
答:让浏览器根据什么版本剖析文档。
link @import 有什么区分
答:link是经由过程html链接引入,@import在css文件中引入。 link在页面加载的时也同时加载,而@import是须要css加载完成后在最先加载。
lable有什么用
答:标注input,点击lable中的笔墨,就会触发此控件,自动把核心转移到绑定的表单元素上。
综合篇
cookies,sessionStorage 和 localStorage 的区分?
答:cookies:贮存最多20多条数据,贮存大小在4kb摆布,在设置的时候前不会由于浏览器的封闭而消逝,平安性存在破绽,轻易被阻拦,在一切同源窗口同享。 sessionStorage: 大小在5M或许更大,不在差别浏览器下同享实时在一个页面(iframe);浏览器封闭消逝 localStorage:大小在5M或许更大,不会由于浏览器封闭而消逝,在一切同源窗口同享
WebSocket和socket有什么关联? WebSocket和ajax的区分?
答:1. mmp!就跟javascript和java,锤子手机和锤子一样,有锤子的关联。 2. web是长衔接,衔接一向坚持,ajax是短衔接,提议,吸收,封闭。 ajax是客户端提议,web是客户端服务器相互推送。
http和https的区分
答:本身的个人明白:https比http更平安。 为何平安不知道,请自行搜刮。虽然搜刮过,并看过好几遍然则个人一向没法举一反三,所以不再次标注答案。等什么时刻吃透了,我在写上。
http和https之间怎样传输?
答:mmp,照样本身去搜刮吧。
正则考证邮箱
答:var str = 23246574@qq.com reg = /^\w+@\w+(\.[a-zA-Z]{2,3}){1,2}$/g;)); console.log(reg.text(str));
JavaScript篇
闭包,你在开辟中要常常运用闭包吗?为何?
答:能够接见别的一个函数作用域里的变量和函数。不发起频仍运用,或许对本身的手艺不是蜜汁自信的不要过量运用,由于闭包运用多了,操纵不当,轻易形成内存走漏,变成内存溢出。
数据类型 、
答:number string boolean undefined null object
猎取元素自定义属性有什么区分?
答:getAttribute; // 返回对象 getparameter; // 返回字符串
继续都有哪些
答:原型链、组合、寄生、寄生组合、组织、实例、拷贝
题
- var arr1 = [1,2,3,4,5,6,7,8,9], arr2 = [9,8,7,6,5,4,3,1,11,10,7,9];
找出arr1和arr2中耦合的数字。 - 把 {“a”:[1,2,3],”b”:[4,5],”c”:[6],”d”:[7,8,9,10]} 转成 [{“type”:”a”,”name”:1},{“type”:”a”,”name”:2},{“type”:”a”,”name”:3},{“type”:”b”,”name”:4},{“type”:”b”,”name”:5},{“type”:”c”,”name”:6},{“type”:”d”,”name”:7},{“type”:”d”,”name”:8},{“type”:”d”,”name”:9},{“type”:”d”,”name”:10}]
- var arr1 = [1,2,3,4,5,6,7,8,9], arr2 = [9,8,7,6,5,4,3,1,11,10,7,9];