I'm having a difficult time isolating a 1-pixel edge that appears on the right-hand side of my site. It happens at different window sizes on Chrome and Safari, and I can't seem to figure out what's causing it, or whether it's actually something completely unavoidable with my setup.
Website: www.husamelfaki.net
Thanks very much if you can help in advance, really appreciate it. Husam
EDIT: Removed sensitive password detail, now that the question's been answered. Thank you.
Your issue comes from every element on the right side like this one:
Its width is 50% but the element's left side isn't placed at
50%
. Set the left to half the width with the CSS style ruleleft: 50%;
.And I suggest you to use flex-boxing which is perfect for this kind of pages.