28 lines
627 B
HTML
28 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
.test {
|
|
width: 400px;
|
|
height: 100px;
|
|
background: red;
|
|
text-align: center;
|
|
line-height: 60px;
|
|
}
|
|
.demo {
|
|
width: 100px;
|
|
height: 50px;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="test">
|
|
<div class="demo"></div>
|
|
</div>
|
|
</body>
|
|
</html> |