chenno9
2018-03-30 15:27:05 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.wrapper{
width: 100%;
display: flex;
background-color: #ccc;
justify-content: center;
}
.icon{
width: 200px;
background-color: red;
margin-right: 50px;
}
.text{
width: 500px;
background-color: yellow;
}
.blank{
width: 250px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="icon">icon</div>
<div class="text">text</div>
<div class="blank"></div>
</div>
</body>
</html>