top | item 35757459

Is this the shortest way make an All-Black Webpage?

1 points| dibeneditto | 2 years 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

2 comments

order

xigoi|2 years ago

You can shorten `background-color:#000000` to `background:#000`.