How to Change the font-size of flex-items with the value of 50px and align the text to the "center" in flex-items
Created 3 years ago
2765
Views
5
Comments
<!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>Static Template</title>
<style>
.flex-items{
text-align:center;
}
</style>
</head>
<body>
<h1 class="flex-items">Hello from GUVI</h1>
</body>
</html>