.container{width:1000px;
    background-color:pink;
    display:flex;}
.item{height:200px;}
.item1{background-color:violet;
    flex:1;}
.item2{background-color:yellow;
    flex:1;}
.measure{width:1000px;height:30px;
    display:flex;}/*ものさし*/
.measure *{width:100px;
    background-color:green;
    text-align: right;
    border: solid 1px #000;
}
.a{background-color:#666;flex:1;}
.b{background-color:#888;flex:2;}
.c{height:200px;}