The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

> Media Query help, Reducing image columns with a media query
Binaary
post Feb 3 2021, 09:59 AM
Post #1





Group: Members
Posts: 2
Joined: 3-February 21
Member No.: 27,766



After a few months of not touching html and having some spare time on my hands I've decided to improve my knowledge. I've started following a tutorial on making a gallery with different image heights, however trying to make it responsive is becoming a challenge.

This is the video that I've been following: https://www.youtube.com/watch?v=KI3h2RIMW2E


HTML
CODE

    <div class="container">
        <div class="m-block"><img src="images/pic1.png"></div>
        <div class="m-block"><img src="images/pic2.png"></div>
        <div class="m-block"><img src="images/pic3.png"></div>
        <div class="m-block"><img src="images/pic4.png"></div>
        <div class="m-block"><img src="images/pic5.png"></div>
        <div class="m-block"><img src="images/pic6.png"></div>
        <div class="m-block"><img src="images/pic7.png"></div>
        <div class="m-block"><img src="images/pic9.png"></div>
        <div class="m-block"><img src="images/pic10.png"></div>
        <div class="m-block"><img src="images/pic3.png"></div>    
    </div>    



CSS and @media



CODE

.container{
    column-count:3;
    column-gap:10px;
    max-width:1800px;
    margin: 0 auto;
    padding-left: 10%;
    padding-right: 10%;
}

.m-block img{
    width: 100%;
    cursor:pointer;
    padding: 10px;
    display:block;
    height:auto;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px){
    .container{
        column-count: 3;
    }
}    

@media screen and (max-width: 640px){
    .container{
        column-count: 2;
    }
}    

@media screen and (max-width: 375px){
    .container{
        column-count:3;
    }
}    




Full width
IPB Image

Mobile
IPB Image


Any help as to why this isn't working would be greatly appreciated!

User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 7th June 2024 - 11:33 AM