How would this be fixed so that ‘border-right: 1px’ can be used?
border-right: 0;
input[type=submit] {
border-right: 0;
}
.container-right {
float: left;
margin: 0 0 0 146px;
}

border-right: 1px
Added In:
input[type=submit] {
border-right: 1px solid #0059dd;
}
.container-right {
float: left;
margin: 0 0 0 146px;
}

This seems to have fixed it:
.container-right {
float: right;
}
PaulOB
3
Magic number alert again 
I gave you a better alternative in one of your other threads using flex.
3 Likes
system
Closed
4
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.