Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Header with border alignment and background help Re: Header with border alignment and background help

#106474
Paulie_D
Member

Like I said, if you can give us a link to a live site or put your code on Codepen we might be able to assist further.

I’m not saying your code is bad (I haven’t seen it) but if you want to avoid borders and such causing these types of issues then you might want to consider adding

*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

to your CSS.