Now ask the question correctly
The problem is that I want to make a conclusion on 2 articles in a row (horizontally), currently 1 article is displayed vertically. Output code:
printf (" <table align='center' class='lesson'> <tr> <td class='lesson_title'> <p class='lesson_name'> <a class='a' href='view_obzor.php?id=%s'>%s</a> </p> <p class='lesson_adds'>Дата добавления: %s</p> <p class='lesson_adds'>Автор урока: %s</p> </td> </tr> <tr> <td> <p class='lessons_text'>%s</p> <p class='lesson_view'>Просмотров: %s Рейтинг: <img src='images/%s.gif'> </p> </td> </tr> </table> <br> <br> ", $myrow["id"], $myrow["title"], $myrow["date"], $myrow["author"], $myrow["description"], $myrow["view"], $r);
Css code:
.lesson { border: 1px solid#aec3f8; border - radius: 15px 15px 15px 15px; width: 35 %; }
Images as is:
I would like to achieve this result. Approximately so there all the lines indicated:
Thanks in advance, I hope I correctly described the essence of the problem.
Sincerely, StrannicK.