首页 > 编程 > Flex > 正文

多浏览器兼容flexbox容器的样式代码

2020-05-17 17:58:37
字体:
来源:转载
供稿:网友

不同浏览器对于flexbox的定义不同


.flex-container {
display: -moz-box; /* Firefox */
display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Safari */
display: -webkit-flex; /* Chrome, WebKit */
display: box;
display: flexbox;
display: flex;
width: 100%;
height: 100%;
background-color: gray;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表