When I run the code below, I see a blue screen on the screen.
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<style type="text/css">
a {display:block;background:blue; text-indent:-9999px; float:left;}
</style>
</head>
<body>
<a>Hello World</a>
</body>
</html>
Why, if I change the text Hello Worldto HelloWorld, does the blue square disappear?
Additional notes . I see this in google chrome.
source
share