Hello! I ask for advice, what is the best way to create such a block with the possibility of adaptability - on divas or a table? I tried on divas, it turns out to be very hemorrhoid, and everything else is not very adaptive. The table is also quite problematic.
I can not understand which of these methods is less problematic) I don’t ask you to write the code for me, just tell me the best option for this type
The code that I wrote on the divas (not full, because the full one was deleted in the heat of the purge and now I am rewriting).
.promo { border-left: 5px solid red; } .promo h1 { font-size: 2.5em; margin-left: 15px; } .gender { border-left: 2px solid red; } .gender p { font-size: 1.5em; margin: 0 0 5px 15px; } .men { display: inline-block; } .men p:first-child { font-size: 1.15em; margin-left: 15px; } .women { display: inline-block; } .women p:first-child { font-size: 1.15em; margin-left: 15px; } .men img { float: left; margin-right: 8px; } .women img { float: left; margin-right: 8px; } <div class="promo about"> <div ><h1>Аудитория</h1></div> </div> <div class="gender"> <p>Пол</p> <div class="men"><p><img src="men.jpg" alt="">Мужчины</p> <p>50%</p> </div> <div class="women"><p><img src="w.jpg" alt="">Женщины</p> <p>50%</p> </div> </div> 