My issue involves setting the max-width of a table row. Below is my CSS code:
table tr {
max-width: 1580px;
margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
}
However, I am facing difficulties as the padding shows in the browser but does not push the content. Interestingly, the margin and max-width are not even visible in the browser inspection or computed properties.