zurb foundation is it possible to have full row width

后端 未结 15 2413
栀梦
栀梦 2021-01-30 03:06

I\'m using foundation 3 to build a responsive website but I want to have the Footer and Navigation background width to occupy the entire width? I have named my rows as

15条回答
  •  不要未来只要你来
    2021-01-30 04:02

    What I have been doing is to add a custom class so that I can chain it with .row and override the max-width setting.

    .row.full-width {
      width: 100%;
      max-width: 100%; 
    }
    

    I put width in here too to cover bases, but it is already declared in foundation.css so you can just omit it.

提交回复
热议问题