From 55314e0fc7196d85dca1ce70fb130a59d2cfc447 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 5 Dec 2016 11:19:35 -0800 Subject: [PATCH] Position the textarea at top:0 This prevents the browser from scrolling to the top of the page if the terminal can be scrolled out of view. Fixes #357 --- src/xterm.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.css b/src/xterm.css index b30d7b49..4877f86e 100644 --- a/src/xterm.css +++ b/src/xterm.css @@ -61,7 +61,7 @@ position: absolute; opacity: 0; left: -9999em; - top: -9999em; + top: 0; width: 0; height: 0; z-index: -10;