React-Bootstrap causing margins on left and right side

后端 未结 6 2414
逝去的感伤
逝去的感伤 2021-02-19 23:33

I\'m using React-Bootstrap in my React app. It is causing margin on the left and right side. I\'m using the following code:

import React, { Component } from \"re         


        
6条回答
  •  感情败类
    2021-02-20 00:30

    Really late to the party here; I just wanted to add that in Bootstrap 4, I was able to remove the column margins by adding fluid="true" to the Container and noGutters to the Row, e.g.

    
      
        
          {/* ...  ... */}
        
      
    
    

    Adding fluid only does not seem to be enough. Sample code is untested.

提交回复
热议问题