Currently, I am trying to arrange elements within a div. Below is the div that needs positioning:
https://i.sstatic.net/5nZUt.jpg
This is the desired layout:
https://i.sstatic.net/vXSV9.jpg
Here is the HTML and CSS code snippet:
#channel-header * {
display: inline-block;
}
#channel-title {
position: absolute;
}
<div id="channel-header">
<img src="images/lfc-kanal.png" id="avatar-kanala">
<div id="channel-title">
<h3>LFCOfficial</h3>
<p>828,277 subscribers</p>
<a href="#" class="button" id="sub-button">Subscribe 828K</a>
</div>
</div>