13k words 12 mins.

# 认识 flex 布局 flex 布局是目前 web 开发中使用最多的布局方案 flex 布局 (Flexible 布局,弹性布局) 目前特别在移动端用的最多,目前 PC 端也使用越来越多了 两个重要概念 开启了 flex 布局的元素叫 flex container flex container 里面的子元素叫做 flex items 设置 display 属性为 flex 或者 inline-flex 可以成为 flex container flex:flex container 以 block-level 形式存在 inline-flex:flex container 以...
2.4k words 2 mins.

# typeof (° △ °|||):混蛋!不要把什么都往里面放啊!!! typeof new Date () 的输出结果 。 string function object number typeof +new Date () 的输出结果 。 string function object number typeof 1 + 2 的输出结果 。 string number NaN number2 typeof RegExp 的输出结果 。 string function object RegExp typeof new RegExp 的输出结果...
2.6k words 2 mins.

# typeof ( ̄. ̄):有点奇怪的题 typeof string 的输出结果 。 string function object undefined typeof String 的输出结果 。 string function object undefined typeof new String 的输出结果 。 string undefined function object typeof String () 的输出结果 。 string undefined function object typeof new String () 的输出结果...
4.9k words 4 mins.

# 1. 行内样式居中 (text-align) <style> .parentEl { margin: 50px auto; width: 100px; height: 100px; line-height: 100px; text-align: center; border: 1px solid rgb(10, 0, 0); } </style> <body> <div class="parentEl"> <div...