﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 3
   Coding Challenge 3

   Author: Andrew Hainline
   Date:   10/1/2025
   
   Filename: code3-3_scroll.css

*/

section#container {
	width: 900px;
	height: 370px;
	margin: 10px auto;
	position: relative;
	top: 30px;
	left: 0;
	outline: 2px solid brown;
	overflow: auto;
}

section#container div {
	width: 300px;
	height: 330px;
	position: absolute;
}

section#container img {
	display: block;
	width: 300px;
	height: 300px
}

#slide1 { left:   0px;  top: 20px; }
#slide2 { left: 300px;  top: 20px; }
#slide3 { left: 600px;  top: 20px; }
#slide4 { left: 900px;  top: 20px; }
#slide5 { left: 1200px; top: 20px; }
#slide6 { left: 1500px; top: 20px; }
#slide7 { left: 1800px; top: 20px; }
#slide8 { left: 2100px; top: 20px; }
#slide9 { left: 2400px; top: 20px; }
