how to scroll multiple images in html

Solutions on MaxInterview for how to scroll multiple images in html by the best coders in the world

showing results for - "how to scroll multiple images in html"
Keisha
23 Jun 2019
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5<title>Untitled Document</title>
6</head>
7
8<body>    <div style="width:750px; background-color:white; height:120px; overflow:scroll; overflow-x: scroll; overflow-y: hidden;">
9       <div style="width:1000px;">
10      <img style=" float:left; display:inline" src="images_news/image1.gif" width="160" height="90" alt="bbc news special" />
11      <img style=" float:left; display:inline"  src="images_news/image1.gif" width="160" height="90" alt="bbc news special" />
12      <img style=" float:left; display:inline"  src="images_news/image1.gif" width="160" height="90" alt="bbc news special" />
13      <img style=" float:left; display:inline"  src="images_news/image1.gif" width="160" height="90" alt="bbc news special" />
14      <img style=" float:left; display:inline"   src="images_news/image1.gif" width="160" height="90" alt="bbc news special" />
15      <img style=" float:left; display:inline"   src="images_news/image1.gif" width="160" height="90" alt="bbc news special" /></div>
16
17
18    </div>
19</body>
20</html>
21