From 73ff93984bc2aa14019b3998259b57b0c3ec9319 Mon Sep 17 00:00:00 2001 From: DanielApt Date: Sat, 21 Feb 2015 20:37:42 +0000 Subject: [PATCH] overflow:hidden no longer required - Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index c979960..403d319 100644 --- a/README.md +++ b/README.md @@ -97,11 +97,11 @@ But, they're all very trivial and there is nothing to worry about. The following requirements should meet. * the container must have a 'position' css style. -* the container must have an 'overflow:hidden' css style. The following requirements are included in the basic CSS, but please keep in mind when you'd like to change the CSS files. +* the container must have an 'overflow:hidden' css style. * the scrollbar's position must be 'absolute'. * the scrollbar-x must have a 'bottom' css style, and the scrollbar-y must have a 'right' css style. @@ -117,7 +117,6 @@ requirements. #container { position: relative; height: 100%; /* Or whatever you want (eg. 400px) */ - overflow: hidden; } ```