美文网首页
React页面布局技巧

React页面布局技巧

作者: 陆笪_刑道荣 | 来源:发表于2022-01-17 09:05 被阅读0次

1.全局背景图

width: 100%;
height: 100%;
position: absolute;
background-image:url(image/splash.png);

2.仅垂直居中

父布局display: 'table-cell', verticalAlign: 'middle' 子布局什么不用写

3.垂直水平居中

父布局 display: 'flex', alignItems: 'center', justifyContent: 'center'

4.水平布局 多个元素

父布局:display: 'flex', alignItems: 'center'
子布局可用百分比来确定长度

5.垂直百分比布局 父布局加 width: 100%;height: 100%;

position: absolute

相关文章

网友评论

      本文标题:React页面布局技巧

      本文链接:https://www.haomeiwen.com/subject/tmcchrtx.html