摘要:
一、CSS3背景 CSS3背景图像区域 background-clip属性:指定背景绘制区域 语法:background-clip:border-box|padding-box|content-box; background-origin属性 backgroun-origin属性指定backgrou 阅读全文
摘要:
一、JS中使用typeof能得到哪些类型? ``` typeof undefined //undefined typeof 'abc' //string typeof 123 //number typeof true //boolean typeof {} //object typeof [] // 阅读全文