I'm new to materialize, but I think it's a great framework, I regret not having used it in other projects, because it really facilitates the design, but my problem is this, I want to create 2 row together, that is, The materialize grid system.
I refer to this line:
<div class="row"></div>
If to that line I assign an image and a background color, and later I create another "row", I get separated by approximately 10px or more, I want them to be together.
Here is my sample code:
<div class="container">
<div class="row">
<div class="col s12 m12 l10 blue darken-2 center offset-l1 m0 s0"> <!-- Color azul y centrado-->
<img class="responsive-img" src="img/logo.png"> <!-- Imagen responsiva-->
</div>
</div>
<div class="row">
<div class="col s12 m12 l10 white center offset-l1 m0 s0"> <!-- Color y centrado-->
<!-- Contenido-->
<br>
<div class="row">
<div class="col s12 m10 l8 offset-l2 m1 s0 z-depth-5 blue-text">
<p>Mi texto 1</p>
<p>Mi texto 2 </p>
</div>
<!-- Fin Contenido-->
</div>
</div>
</div>
</div>
I would like the blue top part with my logo to be attached to the bottom part.
Here I leave you how it currently goes (you can see the separation between the blue and white part)