Create a selector to target your td elements within your table body. Give them a width to fill the viewport, with a minimum and maximum of 4rem. This approach ensures that the width is fixed, whereas setting width specifically would allow the elements to shrink to the container.
My Code
tbody td {
min-width: 4rem;
max-width: 4rem;
}
It’s not accepting my answer. Am I doing anything wrong?
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Challenge: Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 53
I suggest checking to see if the browser may have extensions that are interfering with it, or submit it through a different browser.
I have had both issues, at different times, while doing my own coding.