Greetings to all users of the web, I am encountering a perplexing issue.
Here is my HTML code:
#footer {
position: absolute;
left: 500px;
bottom: 0px;
}
.contact_footer{
float: left;
display: inline;
}
<footer>
<div id="footer">
<div class="contact_footer">
<h3>Contact</h3>
<address>
**Address information**
</address>
</div>
<div class="contact_footer">
<h3>Factory</h3>
<address>
2nd Address information
</address>
</div>
</div>
</footer>
It's evident that I'm attempting to construct a footer featuring two distinct contact details positioned side by side, with at least 50 pixels of spacing between them. While I've managed to align them next to each other using the
display: inline
property, I have been struggling to create the desired space between them. What could be causing this issue?