-1

enter image description here

The top border of table has gone out of the form border (which is the border of blue background color) enter image description here

form {
    margin-top: 100px;
    margin-left: 20%;
    width: 60%;
    background-color: #F0FFFF;
}

table {
    width: calc(100% - 20px);
    margin: 10px;
    text-align: center;
    border-collapse: collapse;
    border-style: none;
}
1900011604
  • 137
  • 6

1 Answers1

1

idk just replace table margin: 10px with form padding: 10px

and change table width: calc(100% - 20px); to table width: 100%;

1900011604
  • 137
  • 6
Jacek Pietal
  • 1,960
  • 1
  • 18
  • 27