首页 > 其他分享 >三列布局

三列布局

时间:2024-02-24 15:11:06浏览次数:26  
标签:flex right 布局 100px 三列 grid position left

三列布局

  • 网格

    <style>
        .grid{
            display: grid;
            grid-template-columns: 100px auto 100px;
            gap: 10px;
        }
        .item {
            background-color: cornflowerblue;
            display: grid;
            place-items: center;
        }
    </style>
    <div class="grid">
        <div class="item">1</div>
        <div class="item">1</div>
        <div class="item">1</div>
    </div>
    
  • 弹性

    <style>
        .flex{
            display: flex;
        }
        .left, .right{
            flex: 1;
            border: 1px solid red;
        }
        .center{
            flex: 2;
            border: 1px solid red;
        }
    </style>
    <div class="flex">
        <div class="left">1</div>
        <div class="center">1</div>
        <div class="right">1</div>
    </div>
    
  • 定位

    <style>
        .container{
            position: relative;
        }
        .left{
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
        }
        .right{
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
        }
        .center{
            position: absolute;
            left: 100px;
            right: 100px;
        }
        .container div{
            border: 1px solid red;
        }
    </style>
    <div class="container">
        <div class="left">1</div>
        <div class="center">1</div>
        <div class="right">1</div>
    </div>
    

其它的不考虑,记住这三种就行了

标签:flex,right,布局,100px,三列,grid,position,left
From: https://www.cnblogs.com/zhumenglong/p/18031106

相关文章

  • 网状布局
    <template><div><divclass="wrap5wrap"><divclass="left"></div><divclass="center">网格布局</div><divclass="right"......
  • 绝对布局
    <template><div><divclass="wrap2wrap"><divclass="left"></div><divclass="center">绝对定位布局</div><divclass="right&quo......
  • 浮动布局
    <template><div><divclass="wrap1"><divclass="left"></div><divclass="right"></div><divclass="......
  • 表格布局
    <template><div><divclass="wrap4wrap"><divclass="left"></div><divclass="center">表格布局</div><divclass="right"......
  • flex布局
    <template><div><divclass="wrap3wrap"><divclass="left"></div><divclass="center">flex布局</div><divclass="right&quo......
  • 标签,属性与布局元素
    HTML常用元素与元素1.标签元素的功能描述html元素的功能:,双标签内容由用户提供:Helloworld单标签/空元素:没有内容也叫空元素,内容有某个属性指定,:......
  • 深度解析:iOS开发中Masonry第三方库可能出现的布局崩溃问题及解决方案
    在iOS应用开发过程中,自动布局是一个至关重要的环节。作为广受欢迎的第三方布局框架,Masonry以其简洁的链式语法和强大的功能为开发者提供了便利。然而,在实际使用过程中,如果不正确地配置约束,可能会导致界面布局崩溃的问题。本文将通过具体代码示例探讨几种常见的Masonry布局崩溃原因......
  • 承前启后,Java对象内存布局和对象头
    承前启后,Java对象内存布局和对象头大家好,我是小高先生。在我之前的一篇文章《并发编程防御装-锁(基础版)》中,我简要介绍了锁的基础知识,并解释了为什么Java中的任何对象都可以作为锁。在那里,我提到了对象头中有一个指向ObjectMonitor的指针,但没有深入探讨Java对象的内存结构。本文将......
  • 前端知识汇总2(css,css2, 页面布局,移动端适配)
    固定定位(fixed)固定定位是绝对定位的一种特殊形式。它以浏览器窗口作为参照物来定义网页元素。当position属性的取值为fixed时,即可将元素的定位模式设置为固定定位。当对无素设置固定定位后,它将脱离标准文档流的控制,始终依据浏览器窗口来定义自己的显示位置。不管浏览器滚动条......
  • c# WPF 布局控件
    c#WPF布局控件风雨飘潇有鼻子有眼,普通路人一个 3人赞同了该文章一、概论WPF是继MFC和Winform后,下一代Windows桌面应用程序的技术。其核心是一个与分辨率无关并且基于向量的程序引擎,以在现代图形硬件的优势下,实现更优质的用户客户端软......