Files
unisa_tsw_2014_2015/exam_test_2.html
2015-01-17 03:44:06 +01:00

61 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
section {
position:fixed;
display:flex;
border: 2px blue solid;
align-items: center;
flex-wrap: wrap;
width: 340px;
height: 170px;
justify-content: space-around;
align-content: space-around;
}
header {
flex-basis: 340px;
text-align: center;
box-sizing: border-box;
height: 30px;
}
article {
box-sizing: border-box;
border:2px solid red;
flex-basis: 100px;
height: 30px;
text-align: center;
}
header h3 {
margin: 0;
}
</style>
</head>
<body>
<section>
<header><h3>Settimana:<span id="settimana">23 </span></h3></header>
<article id="lunedi">Autobus</article>
<article id="martedi">Macchina</article>
<article id="mercoled">Treno</article>
<article id="giovedi">Treno</article>
<article id="venerdi">Autobus</article>
<article id="sabato">Piedi</article>
<article id="domenica">Autobus</article>
</section>
</body>
</html>