I am working with a particular layout.
<div class="comment">
<div class="leftpart">
</div>
<div class="rightpart">
</div>
</div>
When viewing on a desktop, I maintain the original styling where each div is in its own section and nothing is floating inside.
However, on mobile devices, I would like the leftpart to be positioned at the top left of the comment with the right part wrapping around it on the right side, creating a specific structure as follows:
|-------| Right div |
|Left | right div |
| div | right div |
|<auto->| right div |
|-------| right div |
|right div this div |
|<--- 100% width--->|
Is there a way to achieve this responsive layout without making any changes to the existing HTML code?