dioxus/test.html
2021-12-31 23:53:37 -05:00

45 lines
No EOL
857 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<style>
html,
body {
height: 100%;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* margin: auto; */
}
.smaller {
height: 50%;
justify-content: center;
align-items: center;
color: violet;
}
</style>
</head>
<body>
<div class="container">
<div class="smaller">
hello world
<div style="color: red;">
goodbye
<div>
asdasdasd
</div>
</div>
</div>
</div>
</body>
</html>