一周拾遗-第3期

本期内容:

table-layout布局

1
2
3
table {
table-layout: auto; /* auto(默认值) 、fixed、inherit */
}

auto: 默认值。内容决定表布局。此时设置表格的width样式无效,列的width也无效。效率较低。
fixed: 固定布局。首行决定表布局。此时表格的width样式生效,如果设置了第一行某些列的列宽,则该列宽固定,其余列宽平均分配,否则,所有列宽平均分配。只有第一行列宽有效,其他行无效。效率较高,因为只用计算第一行,而不是分析整个表内容。

https://css-tricks.com/almanac/properties/t/table-layout/

https://css-tricks.com/fixing-tables-long-strings/

使用Phabricator做为Code-Review工具

https://www.jianshu.com/p/b1a75a14638c

zsh命令行工具

https://github.com/ohmyzsh/ohmyzsh

https://sspai.com/post/55176

跨浏览器的JavaScript全屏API

https://github.com/sindresorhus/screenfull.js/