why column-count does not work in firefox?

1

Because the css column-count attribute does not work in mozilla firefox it follows as it is in google chrome and mozilla firefox

Mozilla firefox

Googlechrome

HowdoImakemozillafirefoxequaltogooglechrome?

code:

CSS

.imagem{width:100%;height:100%;margin-top:4px;min-width:0rem;float:left;overflow:hidden;background-color:none;position:relative;text-align:center;cursor:default;margin-bottom:0;box-shadow:none;border:none;}.img{width:100%;padding-right:2px;padding-left:2px;-moz-break-inside:avoid;-webkit-break-inside:avoid;break-inside:avoid;}#container{padding-left:0;padding-right:0;-webkit-column-count:6;-moz-column-count:6;column-count:6;}

HTML

<divclass="col-md-12 col-lg-12" id="container">
    <div class="img">
      <div class="imagem">
        <img class="img-responsive" src="caminho das img">                                                          
      </div>
    </div>
</div>

How do I make the firefox equal to chrome ?

    
asked by anonymous 02.06.2017 / 22:26

1 answer

0

I think there is something that is breaking apart from being the column-count and the same is supported from mozilla 2.0 if you can add more details or a larger snippet of code. Thanks!

Any questions about: w3schools

    
02.06.2017 / 23:43