|
|
|
Is this the shortest way make an All-Black Webpage?
|
|
1 points
by dibeneditto
1148 days ago
|
|
Can you come up with the shortest solution to make a webpage entirely black? Longest code example?:
data:text/html,<body style="background-color:#000000"> Shortest code example (with caveats)?
data:text/html,<body bgcolor=0> HTML5 no longer supports bgcolor attribute for <body> tag, but many browsers provide legacy support. Unconventional solutions: 1. Turn display off 2. Modifying the web browser's default CSS to display black 3. Close eyes 4. EMP |
|