I would like to fill in a visible window on a web page with random numbers. The way I'm currently trying to do this involves first a long string of random numbers, and then using the following property in a div:
#mydiv{
font-family: "Inconsolata", monospace;
word-break: break-all;
font-size: 3em;
color: #202020;
height: 100%;
width: 100%;
overflow-y:hidden;
}
https://jsfiddle.net/4ztpbnm0/1/
It works (ish) in Chrome, but it takes a very significant amount of time to resize the browser window. Is there any way to do this without a problem?
source
share