<!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>
.main{
width:500px;
height:500px;
background:skyblue;
display:flex;
}
.main div:nth-child(1){
width:400px;
height:100px;
background:tomato;
flex-shrink:0.3;
}
.main div:nth-child(2){
width:300px;
height:100px;
background:tomato;
flex-shrink:0.5;
}
</style>
</head>
<body>
<div class="main">
<div>1</div>
<div>2</div>
</div>
</body>
</html>