2020-08-09 html的button的type默认属性 + css的position定位 + JS的模板引擎 + 软技能的图片压缩程度

2020-08-09 题目来源:http://www.h-camel.com/index.html

[html] button标签的type默认值是什么呢?

尽量为按钮设置type属性: 1.type = "button" 该按钮可点击

2.type = "submit" 该按钮为提交

3.type = "reset" 该按钮为重置,清除表单数据

[css] position的relative和absolute分别是相对谁进行定位的?

元素的定位一般有以下4中方式

1.static 默认值,没有定位,元素出现在正常的流中;

2.position: absolute; 相对于第一个非static定位的父级元素进行定位;

3.position: relative; 相对于自身进行定位;

4.position: fixed 相对于浏览器窗口进行定位;

[js] 你有用过哪些模板引擎?你觉得哪个好用?为什么?

https://www.zhihu.com/question/32524504

[软技能] 一般情况下,大图片需要压缩到什么程度呢?

一般压缩到20k左右吧

有个图片格式webp

扫描二维码关注公众号,回复: 11725956 查看本文章

如何压缩?https://www.zhihu.com/question/20027708

猜你喜欢

转载自blog.csdn.net/vampire10086/article/details/108442180