blob: 050237094c95089a8f2ce562e8bcc9d013c783f8 [file] [log] [blame]
<style type="text/css">
#file {
display: -moz-box;
display: -khtml-box;
display: box;
background-color: blue;
width: 300px;
height: 100px;
}
#but {
-moz-box-flex: 2;
-khtml-box-flex: 2;
box-flex: 2;
height: 100px;
background-color: red;
max-width: 400px;
min-width: 400px;
}
#name {
-moz-box-flex: 3;
-khtml-box-flex: 3;
box-flex: 3;
height: 100px;
background-color: green;
}
</style>
<div id="file"><div id="but">Some text</div><div id="name">Some more text</div></div>