zurb foundation is it possible to have full row width

后端 未结 15 2418
栀梦
栀梦 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 03:48

    Just override the max-width property as max-width: initial;, for example,

        .fullWidth {
           width: 100%;
           margin-left: auto;
           margin-right: auto;
           max-width: initial;
        }
    
    

    this works for me :)

提交回复
热议问题