1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!DOCTYPE html> <html> <head> <title>Test min-width in the html tag</title> <style> body {margin: 0px} .test {width: 2000px; background: lightgrey} </style> </head> <body> <div class="test"> <p>Hello</p> </div> </body> </html>