4
I have a simple problem with Bootstrap v4.0.0-alpha.5.
I’ll run it through the database. It lines side by side but in some cases a line is skipped, and there is only one item for the bottom line.
<div class="row">
<div class="col-md-12">
<h2 style="text-align:left; color:white; margin:-top:1%;">Ação/Aventura</h2>
<?php
require 'conexao.php';
$consulta = $PDO->query("SELECT * FROM filmes WHERE categoria1 = 'acaoaventura' ORDER BY id ASC;");
while ($linha = $consulta->fetch(PDO::FETCH_ASSOC)) { ?>
<div class="col-md-2" style="margin:0;margin-bottom:3%;margin-top:2%;padding:0.1%;">
<div class="col-md-12" style="margin:0;padding:0;">
<a href="filme.php?id=<?php echo "$linha[id]";?>">
<img src="<?php echo "$linha[fotodacapa]"; ?>" class="img-fluid">
<p style="color:yellow; text-align:center; margin:0; padding:0;"><?php echo "$linha[nome]"; ?></p>
<div class="col-md-6">
<p style="color:white; text-align:center; margin:0; padding:0;">16 visitas</p></a>
</div>
<div class="col-md-6">
<a class="venobox_custom" data-type="youtube" href="https://youtu.be/<?php echo "$linha[trailer]"; ?>?autoplay=1"><p style="color:white; text-align:center; margin:0; padding:0;"><i class="fa fa-film" aria-hidden="true"></i> Trailer</p></a>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
In this code snippet, I do the search to show on the screen what comes from the bank, but get the following result:
I’ve tried to move a few items around, but to no avail. In another job, I managed to take the "container", something not recommended, but it worked for me. This time, did not solve.
Some idea of friends?
Thank you in advance!
Note: Do not notice the settings of Div’s, as I am still testing, I have not organized the classes.
A super class, thank you for your attention. I left the "gambiarra" for now, because of the rush of my friend to finish the project, but I will seek to study much more to be applying correctly. I will take your reply as future references. Again, thank you for the clarifications.
– Hebert Richard
@Hebertrichard thank you :D
– Guilherme Nascimento