-1
I have a page of type one-page with 3 columns. The central column has the content of the site. And the right and left columns need to repeat an image vertically throughout the page height.
<body id="home" class="homepage">
<div class="container col-sm-1 col-md-1" style="background-image:url('http://placehold.it/30x30');
background-repeat:repeat-y;">
</div>
<div class="container col-sm-10 col-md-10">Conteúdo Enorme</div>
<div class="container col-sm-1 col-md-1" style="background-image:url('http://placehold.it/30x30')>
</div>
</div>
</body>
How I make the lateral columns follow the height of the central column, without losing the responsiveness?
In this case it would be very difficult to match the width of the side image... the crazy idea I was asked to perform is to put this pattern on the sides (see: https://i.pinimg.com/Originals/07/0a/ea/070aea5a0cab75ccf767a0a1f233b81e.jpg) a single column on each side of the site, repeating vertically only, not horizontally.
– AlamBique