make border only go out css code example
Example 1: making border go inside
box-sizing: border-box;
Example 2: how to make the border invisible in html
#(your id)
{
border:none;
}
box-sizing: border-box;
#(your id)
{
border:none;
}