diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html index 4da04229..5059dcaf 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html @@ -11,16 +11,16 @@ diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css index 73997cdb..9ff8a831 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css @@ -61,6 +61,10 @@ body { padding: 0; list-style: none; transition: margin-left 250ms; + /* remove white-space between inline-block'ed li */ + /* http://davidwalsh.name/remove-whitespace-inline-block */ + + font-size: 0; } .gallery li { diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html index 6de9e7eb..59e72f15 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html @@ -14,22 +14,22 @@