hab ein flexbox. in der flexbox sind zwei divs die eben nebeneinander sein sollen, und sich erst dann verschieben wenn kein platz mehr ist.
nur bekomm ich das mit dem Code nicht so hin bzw. weiß ich nicht wo der fehler ist.
nur bekomm ich das mit dem Code nicht so hin bzw. weiß ich nicht wo der fehler ist.
PHP:
<div id = 'portfoliosmartphone1'> <!-- Layout für Portfoliosmartphone -->
<?php
if (array_key_exists('1',$portfoliotext_array))
{
echo "<div id = 'bild1smartphone' >";
echo htmlspecialchars_decode($portfoliobild_array[1]); --> Ein Bild wird ausgelesen
echo "</div>";
echo "<div id = 'bild2smartphone'>";
echo htmlspecialchars_decode($portfoliobild_array[1]);
echo "</div>";
}
?>
</div>
Code:
CSS:
#portfoliosmartphone1 {
overflow: auto;
margin-left: 5%;
margin-top: 2%;
display: flexbox;
}
div.portfoliosmartphone1 bild1smartphone {
z-index: 1;
width: 30%;
background-color: #E6E6E6;
border-radius: 20px;
overflow: hidden;
}
div.portfoliosmartphone1 bild2smartphone {
z-index: 1;
width: 30%;
background-color: #E6E6E6;
border-radius: 20px;
overflow: hidden;
}
Was mache ich falsch?
Zuletzt bearbeitet: