How can I put text besides a video or an audio. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I put text besides a video or an audio.

Can someone help me and gives me the code.

6th Apr 2020, 12:25 AM
Mulindwa Sulait
Mulindwa Sulait - avatar
2 Answers
+ 3
Thanks
8th May 2020, 6:27 AM
Mulindwa Sulait
Mulindwa Sulait - avatar
+ 1
<div class="row"> <div class="media-wrapper"> ... code for your media here ... </div> <div class="text-wrapper"> ... the content beside your media ... </div> </div> <style> .row { display:table-row; } .row .media-wrapper, .row .text-wrapper { display:table-cell; } </style>
6th Apr 2020, 7:42 AM
visph
visph - avatar