How to use GtkBox to display values like a table styling columns

e93abf8ba72e2258271bd0332caa96ce.png
1. create a
GtkBox
vertical to represent the lines;
2. create a
GtkBox
horizontal to represent the columns;
3. set
GtkBox::set_homogeneous
to create homogeneous columns;
4. add each horizontal block to vertical
GtkBox
;
5. create
GtkCssProvider
;
6. load css data with
GtkCssProvider::load_from_data
;
7. create
GtkStyleContext
and add provider to the screen, to css be accessible for all widgets;