I'm having trouble with making the text and image be responsive on mobile.
This is what I have HTML:
<div class="split-content" style="width:50%; background-color: #ffffff; background: -webkit-linear-gradient(bottom, #FAFAFA, #ffffff ); height: 212.5;max-width: 300px; display: inline-block;float:left">
Lorem Ipsum dolor sit amet consectetur Sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem commodi.
And CSS:
<link href="https://fonts.googleapis.com/css?family=Lato:300" rel="stylesheet">
<style>
body {
font-family: 'Lato', San serif;
Font-weight: 300;
letter-spacing: 0.5px;
}
.headers {
Font-weight: 700 !important;
}
.heads {
letter-spacing: 3px !important;
Font-weight: 700 !important;
}
.blog {
letter-spacing: 0.6px !important;
Font-weight: 400 !important;
}
</style>
I want these images to show on top of their text on mobile

Can someone please help me, please?
i have an answer, you can use float values for this kind of approach and make float none in mobile resolution using media query , it would be same as you like to view image on top and them text for mobile resolution. Kindly check the example.
Code