百度前端学院第5-6天笔记


盒子模型

https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model

??这篇资料说的很不错

浮动

https://developer.mozilla.org/zh-CN/docs/Learn/CSS/CSS_layout/Floats

??这篇资料说的很不错

文字竖排,writing-mode
https://www.runoob.com/cssref/css-pr-writing-mode.html

vertical-rl:垂直方向自右而左的书写方式。即 top-bottom-right-left

vertical-lr:垂直方向内内容从上到下,水平方向从左到右

sideways-rl:内容垂直方向从上到下排列

sideways-lr:内容垂直方向从下到上排列

veritical-rl的意思是先从上到下,然后从左到右
sideways-lr的意思是先从左到右,然后从上到下