2019年8月20日

摘要: 浮动 属性 常规流 浮动 Margi-left-auto 尽量撑满包含块 0px margin-right:auto 尽量撑满包含块 0px margin-top:auto 0px 0px margin-bottom:auto 0px 0px width:auto 尽量撑满包含块 适应内容宽度 he 阅读全文

posted @ 2019-08-20 09:10 牛顿8848 阅读(108) 评论(0) 推荐(0) 编辑

摘要: //九九乘法表 let i,j,str; for(i=1;i<=9;i++) { str = ""; for(j=1;j<=i;j++) { str = str+i+'*'+j+'='+(i*j)+" "; } console.log(str); } 阅读全文

posted @ 2019-08-20 09:07 牛顿8848 阅读(141) 评论(0) 推荐(0) 编辑