Can Foundation's grid system be used to achieve the following layout?
On Large Screens
################ ################
# # # #
# # # Col 2 #
# # # #
# # #
# Col 1 # ################
# # # #
# # # Col 3 #
# # # #
# # # #
################ ################
On Medium Screens
################ ################
# # # #
# # # Col 2 #
# # # #
# # #
# Col 1 # ################
# #
# #
# #
# #
#################################
# #
# Col 3 #
# #
# #
#################################
The code snippet in question is as follows:
<div class="row">
<div class="large-6 columns">
<p>Column 1</p>
</div>
<div class="large-6 columns">
<div class="row">
<div class="large-12 columns">
<p>Column 2</p>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<p>Column 3</p>
</div>
</div>
</div>
</div>
I am exploring the best approach for this. Column 2 content will have text-align: right;
, taking up less space, while Column 3 content will be wider and may need line breaks, contrary to the original design intention of aligning Col 3 next to Col 2.