Let’s say that we want to center a div inside our body element. Our code looks like this:
<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>Document</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div>
<h1 class="title">Hello You!</h1>
</div>
</body>
</html>
In CSS grid we can do something like this:
body {
height: 100vh;
display: grid;
place-items:center;
}
This is nice and easy trick!
In this app I’m going to build a weather app...
var vm = new Vue({
// options
})
The :valid CSS pseudo-class represents any <input> or other <form> element whose...
input:valid {
background-color: powderblue;
}
Designed & Built by Mijo Kristo