How to split page into 4 equal parts?

后端 未结 6 1180
走了就别回头了
走了就别回头了 2020-12-14 06:37

I want to divide my page into four equal parts, each of same height and width (50-50%).

I don\'t want to use JavaScript. I want blocks (

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-14 07:18

    I did not want to add style to tag and tag.

    .quodrant{
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    .qtop,
    .qbottom{
        width: 100%;
        height: 50vh;
    }
    
    .quodrant1,
    .quodrant2,
    .quodrant3,
    .quodrant4{
        display: inline;
        float: left;
        width: 50%;
        height: 100%;
    }
    
    .quodrant1{
        top: 0;
        left: 50vh;
        background-color: red;
    }
    
    .quodrant2{
        top: 0;
        left: 0;
        background-color: yellow;
    }
    
    .quodrant3{
        top: 50vw;
        left: 0;
        background-color: blue;
    }
    
    .quodrant4{ 
        top: 50vw;
        left: 50vh;
        background-color: green;
    }
    
    
    
        
        Document
        
    
    
    
    

    Or making it looks nicer.

    .quodrant{
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    .qtop,
    .qbottom{
        width: 96%;
        height: 46vh;
    }
    
    .quodrant1,
    .quodrant2,
    .quodrant3,
    .quodrant4{
        display: inline;
        float: left;
        width: 46%;
        height: 96%;
        border-radius: 30px;
        margin: 2%;
    }
    
    .quodrant1{
        background-color: #948be5;
    }
    
    .quodrant2{
        background-color: #22e235;
    }
    
    .quodrant3{
        background-color: #086e75;
    }
    
    .quodrant4{ 
        background-color: #7cf5f9;
    }
    
    
    
        
        Document
        
    
    
    
    

提交回复
热议问题