Slide 41
Slide 41 text
The positioning of
the regions can use
any CSS layout
method you like.
.regionwrapper {
display: flex; flex-direction: row;
}
.region2 {
flex: 1; padding: 0.8em; height: 10em; border-right: 1px
dotted #ccc;
}
.region3 {
flex: 1; padding: 0.8em; height: 10em; border-right: 1px
dotted #ccc; background-color: rgb(255,255,255);
}
.region4 {
flex: 1; padding: 0.8em; height: 10em;
}
Regions