Skip to main content

Image Grid Gallery Using CSS3

 Video: 


Images:






Source Code:

HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>CSS Image Grid Gallery</title>
</head>
<body>
    <main>
        <div class="box1"> </div>
        <div class="box2"> </div>
        <div class="box3"> </div>
        <div class="box4"> </div>
        <div class="box5"> </div>
        <div class="box6"> </div>
    </main>
</body>
</html>

CSS:

*{
    margin0;
    padding0;
    box-sizing: border-box;
}
body{
    background#222222;
    color#ffffff;
}
main{
    position: absolute;
    top50%;
    left50%;
    transformtranslate(-50%,-50%);
    width80%;
    display: grid;
    grid-template-rowsrepeat(2250px200px;
    grid-template-columnsrepeat(31fr);
    grid-gap7px;
}
.box1{backgroundurl("bg1.jpg")no-repeat;background-size: cover;
background-position: center;}

.box2{
    backgroundurl("bg2.jpg")no-repeat;background-size: cover;
background-position: center;
    grid-column2/-1;
}

.box3{backgroundurl("bg3.jpg")no-repeat;background-size: cover;
background-position: center;}
.box4{backgroundurl("bg4.jpg")no-repeat;background-size: cover;
background-position: center;}

.box5{
    backgroundurl("bg5.jpg")no-repeat;background-size: cover;
background-position: center;
    grid-row2/-1;
    grid-column3/-1;
}

.box6{
    backgroundurl("bg6.jpg")no-repeat;background-size: cover;
background-position: center;
    grid-column1/3;
}


Comments

Popular posts from this blog

Amazing 404 Error Page Using HTML & CSS

  Video: Source Code: <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < meta   http-equiv = "X-UA-Compatible"   content = "ie=edge" >     < title >Error! 404</ title > </ head > <style> * {     margin:  0 ;     padding:  0 ;     font-family: Nunito;     box-sizing:  border-box ; } body {     background:  linear-gradient (to  right ,  #48dbfb ,  #1dd1a1 );     display:  flex ;     align-items:  center ;     justify-content:  center ;     min-heigh...

Text Reflection Effect Using CSS3

Source Code: HTML: <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Awesome CSS Text Reflection</ title >     < link   rel = "stylesheet"   href = "style.css" > </ head > < body >     < h1 >Logo</ h1 > </ body > </ html > CSS: * {     margin:  0 ;     padding:  0 ;     font-family:  Century  Gothic; } body {     background:  #000 ; } h1 {     color:  #ffffff ;     position:  absolute ;     top:  50 % ;     left:  50 % ;...