居中
- 单行文本水平垂直&垂直居中: text-align、line-height, 元素必须有高度
1 | <style> |
- 多行文本垂直居中: display: table-cell 、vertical-align: middle;
1 | <style> |
- div 垂直居中: 父元素 display: table-cell; vertical-align: middle;
1 | <style> |
- div水平垂直居中: 父元素relative. 子元素: absolute left right bottom top : 9; margin: auto; 子元素有高度、宽度
1 | <style> |
- 绝对定位&负值, 子元素有宽度、高度
1 | <style> |
- 同上.绝对定位&translate 子元素不需要有宽度、高度
1 | <style> |
- div水平垂直居中: 负元素dispaly: flex; juestify-content: center; align-item: center;
1 | <style> |