小5聊前端基础知识之浮动块如何垂直居中并排显示

Posted 小5聊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小5聊前端基础知识之浮动块如何垂直居中并排显示相关的知识,希望对你有一定的参考价值。

运用场景描述

网站顶部有固定200px高度的行,左边显示图标右边显示导航菜单,如何把图标和菜单都居中显示

1、图标和菜单都浮动的效果

<div style="width: 500px;height: 100px;background: #eee;margin-bottom: 49px;">
    <div style="float: left;background: #ccc;">
     <img src="https://img-home.csdnimg.cn/images/20201124032511.png" style="height: 50px;">
    </div>
    <div style="float: left;background: #c3c3c3;">
        <span>菜单1</span>
        <span>菜单2</span>
        <span>菜单3</span>
        <span>菜单4</span>
        <span>菜单5</span>
    </div>
</div>

 2、设置居中显示方法一

使用flex弹性布局,以及配合使用align-items:center;即可实现居中效果

  • 详细样式如下

 

  

  •  源码

 

<div style="width: 500px;height: 100px;background: #eee;margin-bottom: 49px;display: flex;align-items: center;">
    <div style="float: left;/* background: #ccc; */margin-left: 15px;">
     <img src="https://img-home.csdnimg.cn/images/20201124032511.png" style="height: 50px;">
    </div>
    <div style="float: left;/* background: #c3c3c3; */margin-left: 30px;">
        <span>菜单1</span>
        <span>菜单2</span>
        <span>菜单3</span>
        <span>菜单4</span>
        <span>菜单5</span>
    </div>
</div>

以上是关于小5聊前端基础知识之浮动块如何垂直居中并排显示的主要内容,如果未能解决你的问题,请参考以下文章

web前端练习30----Css,布局(文档流,浮动,清除浮动,浮动高度塌陷,垂直外边距重叠问题,定位,层级,居中,flex布局及练习)

HTML中如何让两个div并排显示,举个例子

华图教育_南京_前端实习面试

前端知识小总结5

小5聊前端基础之上传图片等文件IE浏览器是会显示两个请求

总结一下各种居中(内联元素块级元素浮动元素绝对定位元素)*(水平垂直)