Im trying to align a text in the start of a flex div and an image in the flex-end of that parent div, but anything of what i tried make the job done. Any suggestions?
<div class="div-title title-mon">
<p class="tmp-day">Lunedi</p>
<img width="20px" height="30px" class='arrow arrow-mon' src="arrow.png">
</div>
Css code
.div-title {
display: flex;
align-items: center;
flex-direction: row;
}
What should i do? Obviously this is not the entire code but only the code inherent to this piece of code...