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
What attribute makes a radio button or checkbox input selected?
checked="checked" selected="selected" disabled="disabled"<input type="checkbox" name="a_name" value="value" checked="checked" />
What CSS value scales the background image to the largest size contained within the element?
repeat-x contain linear-gradient#id {
background:url("path_to_image.png");
background-size:contain;
background-repeat:no-repeat;
}
What operator is used to determine the rest of the division of two numbers?
% * /var rest8_7 = 8 % 7;
alert(rest8_7);
Indicate the PHP function that rounds a number up to the next highest integer.
floor() ceil() abs()$nr = ceil(3.5);
echo $nr; // 4