pull/512/head
ces-khanh.hoang 4 years ago
parent 56d12bbabf
commit 5dae9ea585

@ -8,6 +8,12 @@
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="left-container" class="container">
<h1>Hello World</h1>
</div>
<div id="right-container" class="container">
<h1>Hello World</h1>
</div>
</body>
</html>

@ -3,7 +3,24 @@ body {
font-family: helvetica, arial, sans-serif;
}
#left-container {
background-color: #eee;
width: 15%;
left: 0px;
top: 0px;
position: absolute;
height: 100%;
padding: 10px;
}
#right-container {
background-color: #eee;
width: 15%;
right: 0px;
top: 0px;
position: absolute;
height: 100%;
padding: 10px;
}
h1{
color: red;
font-size: 50px;

Loading…
Cancel
Save