• 技术文章 >web前端 >css教程

    flex布局方法(css3弹性伸缩布局教程)

    零下一度零下一度2017-04-21 17:20:19原创1716
    这篇文章主要为大家详细介绍了CSS3弹性伸缩布局之flex布局,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

    .container{
    	align-items: center;
    	justify-content: center;
    
    	display: flex;
    	background: white url(image/baby.jpg) no-repeat center;
    	background-size: auto 100%;
    }
    
    .text{
    	display: flex;
     	align-items: center;
    	height: 3rem;
    
    	color: white;
    	font-family: helvetica, sans-serif;
    	font-size: 1.5rem;
    	font-weight: bold;
    	text-transform: uppercase;
    	text-shadow:0 0 1.2rem hsla(0,100%,100%,.4);
    	box-shadow: 0 0 1.5rem hsla(0,100%,0%,.4);
    	border-radius: .5rem;
    }

    适应各种版本:

     html {
    					height: 100%;
    					font-size: 62.5%; /* 10px with default settings */
    				}   
    				body {		
    					margin: 0;
    					height: 100%;
    					width: 100%; /* width needed for Firefox */
    
    					/* old flexbox - Webkit and Firefox. For backwards compatibility */
    					display: -webkit-box; display: -moz-box;
    					/* middle-aged flexbox. Needed for IE 10 */
    					display: -ms-flexbox;
    					/* new flexbox. Chrome (prefix), Opera, upcoming browsers without */
    					display: -webkit-flex;
    					display: flex;
    					
    					/* old flexbox: box-* */
    					-webkit-box-align: center; -moz-box-align: center;
    					/* middle flexbox: flex-* */
    					-ms-flex-align: center;
    					/* new flexbox: various property names */
    					-webkit-align-items: center;
    					align-items: center;
    					
    					
    					-webkit-box-pack: center; -moz-box-pack: center;
    					-ms-flex-pack: center;
    					-webkit-justify-content: center;
    					justify-content: center;
    					
    					background: white url(image/baby.jpg) no-repeat center;
    					background-size: auto 100%;
    				}
            		
            		/* 	flexbox added below to show it works with anonymous boxes (e.g. text) as well
            			It is not needed to center the heading itself.
            			Rest of the styles are just to make the demo pretty and can be ignored.
            		*/
    				h1 {
    					display: -webkit-box; display: -moz-box;
    					display: -ms-flexbox;
    					display: -webkit-flex;
    					display: flex;
    					
    					-webkit-box-align: center; -moz-box-align: center;
    					-ms-flex-align: center;
    					-webkit-justify-content: center;
    					justify-content: center;
    					
    					-webkit-box-pack: center; -moz-box-pack: center;
    					-ms-flex-pack: center;
    					-webkit-align-items: center;
    					align-items: center;
    					
    					height: 10rem;
    					padding: 0 3rem;
    					
    					/* background-color: hsla(0, 100%, 0%, .9); */
    					color: white;
    
    					font-family: helvetica, sans-serif;
    					font-size: 5rem; /* font shorthand doesn’t work with rem in IE10 */
    					text-transform: uppercase;
    					text-shadow: 0 0 1.2rem hsla(0, 100%, 100%, .4);
    
    					box-shadow: 0 0 1.5rem hsla(0, 100%, 0%, .4);
    					border-radius: .5rem;
    				}

    对齐设置:在容器中设置元素对齐,而不是设置元素本身。

    单位:px 像素,相对于分辨率;em 相对于当前对象内文本的字体尺寸;rem(root em)相对于网页根元素文本字体尺寸。

    需要学习CSS的同学请关注php中文网CSS视频教程,众多css在线视频教程可以免费观看!

    以上就是flex布局方法(css3弹性伸缩布局教程)的详细内容,更多请关注php中文网其它相关文章!

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:css3,flex布局
    上一篇:如何创造一个水平的滑动模块?网页元素的滑动事件实例代码 下一篇:在桌面端和移动端用CSS开启硬件加速实例代码
    VIP课程(WEB全栈开发)

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• 聊聊如何使用CSS实现比普通阴影更加立体的阴影效果!• 聊聊怎么使用CSS滤镜实现圆角及波浪效果• 聊聊CSS中如何利用柏林噪声绘制炫酷图形!• 巧用CSS3滤镜制作文字快闪切换动画效果!• 深入了解content-visibility属性,聊聊怎么用它优化渲染性能
    1/1

    PHP中文网