Home › Forums › CSS › Header with border alignment and background help › Re: Header with border alignment and background help
July 20, 2012 at 10:59 am
#106474
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.