How to add a grid equal to what Stackoverflow has at the top of the menu? I know it seems like a very ignorant question on my part, but I find it very difficult in HTML and CSS!
How to add a grid equal to what Stackoverflow has at the top of the menu? I know it seems like a very ignorant question on my part, but I find it very difficult in HTML and CSS!
It's only a border-top
:
html, body { margin: 0 }
header {
border-top: 3px solid #F48024;
box-shadow: 0 0 10px 2px #ccc;
height: 40px
}
<header></header>