Középre rendezés
Last updated
Last updated
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Center block element</title>
<link rel="stylesheet" href="center.css">
</head>
<body>
<main>
<div></div>
</main>
</body>
</html>main {
padding: 30px 0;
background-color: #ffec99;
}
div {
margin-left: auto;
margin-right: auto;
width: 200px;
height: 200px;
background-color: #f03e3e;
}