Привет, я использую pdf dom на laravel, и мне нужно, чтобы столбцы были рядом
я пробовал это:
<style>
* {
box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
height: 300px; /* Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
</style>
<br>
<table>
@php ($i = count($question->answers))
@foreach($question->answers as $key => $answer)
@if($i % 2 != 0)
<div class="row">
@endif
@if($answer->is_key == 0)
<div class="column" style="background-color:#aaa;">
<h2>Column left {{$i}}</h2>
<p>Some text..</p>
</div>
@endif
@if($answer->is_key == 1)
<div class="column" style="background-color:#bbb;">
<h2>Column right {{$i}}</h2>
<p>Some text..</p>
</div>
@endif
</div>
@php ($i--)
@endforeach
</table>
Привет, я попробовал это, и результат такой:
введите описание изображения здесь
Можете ли вы помочь мне, пожалуйста ..? Как я могу сделать первый онлайн, как и другие