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

68 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
section {
position: fixed;
border: 2px blue solid;
width: 340px;
height: 170px;
box-sizing: content-box;
padding-left: 5px;
padding-right:5px;;
padding-top:50px ;
}
header {
position: absolute;
left: auto;
right: auto;
top: 10px;
width: 340px;
text-align: center;
box-sizing: border-box;
height: 30px;
}
article {
float: left;
border:2px solid red;
width: 100px;
height: 30px;
text-align: center;
margin:5px;
vertical-align: middle;
}
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>