CSS Max-width
This div element has width: 500px; div.ex1 {
width: 500px;
margin: auto;
border: 3px solid #73AD21;
} If using a smartphone, swipe left to see the text beyond the right edge of the phone or tilt the phone
to switch landscape view.
This div element has max-width: 500px; div.ex2 {
max-width: 500px;
margin: auto;
border: 3px solid #73AD21;
} If using a smartphone, swipe left to see the text beyond the right edge phone or tilt the phone to switch
landscape view to see all the text in the box above.
Tip: Drag the browser window to smaller than 500px wide, to see the difference between
the two divs!