I have a code and some little problem using top and margin-top, could not use top:50% i dont know why then i used margin-top:50% but it is not moving canvases to middle of page (50%), how to move canvases to middle of the page ( just height and not width)
.so {
position: relative;
top: 50%;
clear: both;
float: left;
left: 10%;
}
@media only screen and (orientation: landscape) {
.so {
position: relative;
margin-top: 50%;
clear: both;
float: left;
left: 10%;
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="animatedParent">
<div>
<div class="so">
<canvas width="30" height="30" style="background-color:blue"></canvas>
<canvas width="30" height="30" style="background-color:pink"> </canvas>
<canvas width="30" height="30" style="background-color:gray"> </canvas>
</div>
</div>
</div>
</body>
</html>