I have a card in an HTML it is not correctly responsive in mobile phones dimensions
Here is the html:
<div class="col py-2">
<div class="card education-card mirror-face">
<div class="card-body">
<div>
<img style="float:left" class="competence-img " alt="logo" src="{{experience.experience_image.url}}"/>
<h6 style="float: left;padding-top: 17px;" class="education-card-title">{{experience.employer}}</h6>
</div>
<h6 style="display: block;" class="education-card-title">{{experience.title}}</h6>
<div>
<p class="education-card-desc">{{experience.description}}</p>
</div>
</div>
</div>
Here is the css
.education-card-title {
color: var(--scolor);
font-size: 20px;
font-weight: 500;
}
.education-card-desc {
color: var(--color);
font-size: 14px;
font-weight: 300;
}
Here is what I mean:
my objective is to have it like this: