首页技术文章正文

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

更新时间:2021-12-16 来源:黑马程序员 浏览量:

我们在写页面的时候经常会遇到需要将两个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>

IT培训班



猜你喜欢:

CSS浮动元素有什么特点?

Css中如何清理浮动?

什么是块元素?什么是行内元素?

黑马程序员web前端开发高手班课程

分享到:
在线咨询 我要报名
和我们在线交谈!