mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
45 lines
857 B
HTML
45 lines
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>
|