教育行业A股IPO第一股(股票代码 003032)

全国咨询/投诉热线:400-618-4000

两个div在同一行显示如何实现?

更新时间:2021年12月16日14时07分 来源:传智教育 浏览次数:

我们在写页面的时候经常会遇到需要将两个div盒子同行显示的情况,那么“两个Div同行显示”该如何显示呢?一般两个div同行显示可以用float: left和display: inline_block来实现,下面我们分别介绍。

首先我们先来看,没有同行显示的两个div什么显示效果。

两个div默认状态

代码:

<div class="div1">div1</div>
<div class="div2">div2</div>

CSS样式:

.div1 {
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    color: aliceblue;
    background-color: rgb(26, 135, 238);
}
.div2 {
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    color: aliceblue;
    background-color: rgb(7, 194, 178);
}

方法1:浮动

通过浮动使两个div在同一行显示,两个div同时左浮动(float: left)或者有浮动(float: right)。

左浮动后两个div居中

CSS样式:

.div1 {
    float: left;    /* 添加左浮动 */
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    color: aliceblue;
    background-color: rgb(26, 135, 238);
}
.div2 {
    float: left;    /* 添加左浮动 */
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    color: aliceblue;
    background-color: rgb(7, 194, 178);
}

方法2:display: inline-block转为行内块

使用display: inline-block将两个盒子转为行内块,实现两个div同行显示。

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>两个div盒子一行显示</title>
    <style>
        .div1 {
            display: inline-block;  /*转为行内块儿 */
            width: 200px;
            height: 200px;
            text-align: center;
            line-height: 200px;
            color: aliceblue;
            background-color: rgb(26, 135, 238);
        }

        .div2 {
            display: inline-block;  /*转为行内块儿 */
            width: 200px;
            height: 200px;
            text-align: center;
            line-height: 200px;
            color: aliceblue;
            background-color: rgb(7, 194, 178);
        }
    </style>
</head>
<body>
    <div class="div1">div1</div>
    <div class="div2">div2</div>
</body>
</html>

效果

行内块儿让两个div居中

注意:使用display: inlien-block转为行内块之后,两个行内块儿元素之间有缝隙。

产生缝隙的原因:

元素被当成行内元素排版的时候,元素之间的空白符(空格、回车换行等)都会被浏览器处理,根据white-space的处理方式(默认是normal,合并多余空白),我们这里是因为div1和div2两个盒子代码的之间的"回车"被处理成为了缝隙。我们将两个div的代码写在一行就可以解决了,如下:

<div class="div1">div1</div><div class="div2">div2</div>


猜你喜欢:

CSS如何清除浮动?清除浮动的方法有哪些?

块级元素、行内元素和行内块元素各自特点和区别

传智教育前端开发高手班课程

0 分享到:
和我们在线交谈!