The code presented in this page shows you how to
make DIV contents scroll horizontally, with multiple Div's inside aligned horizontally.
To create this design, sets these CSS properties to container DIV:
- a
fixed width and height.
-
white-space: nowrap; to keep the contents on the same line; to not go to a new row.
-
overflow-x: auto; - to display the horizontal scroll bar when the contents exceeds container width.
-
overflow-y: hidden; - optional, to not display the vertical scroll bar.
And add these CSS properties the children DIV's:
-
display: inline-block; - to align the DIV's horizontally.
-
white-space: normal; - to anulate the "nowrap" inherited from parent (container) DIV.
Here is an example.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Example Making DIV Contents Scroll Horizontally, width multiple Div`s inside</title>
<style type="text/css">
#container {
position: relative;
height: 9em;
width: 99%;
margin: 2px auto;
background: #abefcd;
text-align: left;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
vertical-align:middle;
}
#container div {
display: inline-block;
width: 14em;
height: 6em;
margin: 0.5em;
border: 1px solid blue;
padding: 3px;
white-space: normal;
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<div>Content in Div 1:<br/> Web Development courses</div>
<div>Div 2<br/>https://coursesweb.net/</div>
<div>Div 3<br/>https://coursesweb.net/css/</div>
<div><img src="some_image" width="99" height="36" alt="Image Text" /></div>
<div>Div 5<br/>https://coursesweb.net/html/</div>
</div>
</body>
</html>
Demo:
Content in Div 1:
Web Development courses
Div 2
https://coursesweb.net/
Div 3
https://coursesweb.net/css/
Div 5
https://coursesweb.net/html/
To have the Div`s inside container aligned perfectly, their content must have the same number of rows.
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to add definition lists into a <dl> element?
<dt> <dd> <li><dl>
<dt>HTML</dt>
<dd> - Hyper Text Markup Language</dd>
<dd> - Language for web pages</dd>
</dl>
Which CSS property can hide an element on page, letting an empty space in its place?
display position visibility#id {
visibility: hidden;
}
Click on the event which is triggered when the mouse clicks on an object.
onclick onmouseover onfocus document.getElementById("id").onclick = function(){
alert("http://CoursesWeb.net/");
}
Indicate the PHP variable that contains the contents of both $_GET, $_POST, and $_COOKIE arrays.
$_SESSION $_GET $_REQUESTif(isset($_REQUEST["id"])) {
echo $_REQUEST["id"];
}