You are developing a web page that will be divided into three vertical sections. The main
content of the site will be placed in the center section. The two outer sections will contain
advertisements.
You have the following requirements:
The main content section must be set to two times the width of the advertising sections.
The layout must be specified by using the CSS3 flexible box model.
You need to ensure that the visual layout of the page meets the requirements.
Which CSS3 property should you use?

A.
box-orient
B.
box-flex-group
C.
box-flex
D.
box-direction
Explanation:
http://www.html5rocks.com/en/tutorials/flexbox/quick/
I think it is
display: flexbox;
or even better (IE-11 !!!)
display: -ms-flexbox;
0
0
C is correct answer. box-flex property belong to draft flexible box model standard 2009. It turned into flex property.
1
0