blog icon indicating copy to clipboard operation
blog copied to clipboard

博客,积累与沉淀

Results 93 blog issues
Sort by recently updated
recently updated
newest added

- CSS WG 每月动态 #34 - W3C 每月动态 #19 > 文档的状态码的说明,详细见 [#18 术语](https://github.com/anjia/blog/issues/18#issue-365202242) > 诸如 `ED`, `FPWD`, `WD`, `CR`, `PR`, `REC` 等 ---- ways to keep up to date with...

CSS
W3C
css-spec-guide

> 整理于 2018.11.19 CSS WG 共有 [91](https://www.w3.org/TR/?tag=css) 个标准和草案。成熟度涵盖七个: - 五个:`WD` `CR` `PR` `PER` `REC` - 两个:`ret` `Note` 其中,有 53 个是 2017+ 年 还在更新的 - `WD` 32 个 - `CR` 16...

CSS
W3C
css-spec-guide

今天,和大家聊一个很简单但很重要的东西:逻辑属性和逻辑值。 说它“简单”,是因为概念上简单;说它“重要”,是因为思路上重要。 ## 什么是逻辑属性和逻辑值? 先来看个例子。这是一段 HTML 代码: ```html 第一章 本章介绍了逻辑属性和逻辑值,这是一个演示示例。 ``` 要实现下面的效果: ![](https://p0.ssl.qhimg.com/t01cf8ed0877a1973fa.png) 需要编写 CSS: ```css section { text-align: left; } h2 { border-left: .3em solid #ccc; padding-left: .5em; }...

CSS
文章

- CSS WG 每月动态 #34 - W3C 每月动态 #19 > 文档的状态码的说明,详细见 [#18 术语](https://github.com/anjia/blog/issues/18#issue-365202242) > 诸如 `ED`, `FPWD`, `WD`, `CR`, `PR`, `REC` 等 ---- ways to keep up to date with...

CSS
W3C
css-spec-guide

## Object-Sizing - intrinsic dimensions - specified size - default object size - concrete object size ### intrinsic dimensions 内在/固有尺寸 intrinsic dimensions 是指 intrinsic height, intrinsic width 和 intrinsic aspect...

W3C

## CSS Writing Modes Level 4 CSS 里的 writing mode 由这三个属性决定`writing-mode` `direction` `text-orientation`。主要根据: - inline base direction 内联基本方向 - block flow direction 块流方向 https://www.w3.org/TR/css-writing-modes-4

W3C
css-spec

> https://cli.vuejs.org/zh/guide/installation.html 依赖 Node.js 8.9+, 推荐 8.11.0+ / 10.14.0+ `brew upgrade node` ```shell npm uninstall vue-cli -g # 若安装了旧版的 vue-cli,卸载下 npm install -g @vue/cli # Vue CLI 3 vue --version...

Vue

```js var now = new Date() now.toLocaleString() // 2019/1/7 下午12:30:13 now.toLocaleDateString() // 2019/1/7 now.toLocaleTimeString() // 下午12:30:13 now.toDateString() // Mon Jan 07 2019 now.toGMTString() // Mon, 07 Jan 2019 04:30:13 GMT...

JS
doing

1. `JSON.stringify()` 2. `JSON.parse()`

JS
doing