Hey there, I'm diving into the world of HTML5 and CSS3 and feeling a bit lost. Can't seem to find the right solution for what should be a simple task. My goal is to create a line of clickable images/links on my website similar to how Stack Overflow has their questions, tags, and users links at the top.
Here's what my CSS currently looks like:
a#header {
display:block;
margin: 0px auto;
padding: 0px 15px 0px 15px;
border: none;
background: url('img url') no-repeat bottom;
width: 50px;
height: 100px;
}
Unfortunately, this code isn't achieving the desired result. It's only placing the image in the center of the screen. Can someone offer some guidance? Also, any suggestions on best practices for implementing something like this?