Vježba 21m: CSS media queries i flexbox layout modul
PRIPREMA ZA VJEŽBU
1. Objasnite div element.
<div> element u HTML-u je element koji se koristi za definiranje nezavisnih sekcija unutar strukture web stranice.
CSS FlexBox modul
<div class=”flex-container”>
<div>1</div>
<div>2</div>
<div>3</div>
</div>
.flex-container {
display: flex;
}
DODATNE VRIJEDNOSTI:
flex-direction – (column column-reverse, row i row-reverse.)
flex-wrap (wrap i nowrap, te wrap-reverse.)
flex-flow – ovo svojstvo je skraćeno svojstvo za flex-direction i flex-wrap.
justify-content (center, flex-start, flex-end, space-around,
space-between)
align-items – (center, flex-start, flex-end, stretch, baseline).
align-content – ( space-between, space-around
stretch – (center , flex-start, flex-end)
CSS media queries
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<style>
* {
box-sizing: border-box;
}
/* Style the body */
body {
font-family: Arial;
margin: 0;
}
/* Header/logo Title */
.header {
padding: 60px;
text-align: center;
background: #87CEEB;
color: white;
}
/* Style the top navigation bar */
.navbar {
display: flex;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
/* Main column */
.main {
flex: 70%;
background-color: white;
padding: 20px;
}
/* Fake image, just for this example */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
/* Footer */
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}
/* Responsive layout – when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row, .navbar {
flex-direction: column;
}
}
</style>
</head>
<body>
<!– Header –>
<div class=”header”>
<h1>Moja Web stranica</h1>
</div>
<!– Navigation Bar –>
<div class=”navbar”>
<a href=”#”>Link</a>
<a href=”#”>Link</a>
<a href=”#”>Link</a>
<a href=”#”>Link</a>
</div>
<!– The flexible grid (content) –>
<div class=”row”>
<div class=”main”>
<h2>TITLE HEADING</h2>
<h5>Title description, Dec 7, 2017</h5>
<div class=”fakeimg” style=”height:200px;”>Image</div>
<p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<br>
<h2>TITLE HEADING</h2>
<h5>Title description, Sep 2, 2017</h5>
<div class=”fakeimg” style=”height:200px;”>Image</div>
<p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</div>
</div>
<!– Footer –>
<div class=”footer”>
<h2>Footer</h2>
</div>
</body>
</html>