Responsiveness in Bootstrap

0

I'm starting with the Bootstrap framework. My question is: When I specific a value to the width property in the container class, do I lose the responsive screen mode? because I did this procedure, and my responsive did not work anymore. Is there anything to do with it? Or should the container have only one width?

    
asked by anonymous 23.10.2015 / 04:49

2 answers

2

To keep the layout responsive use the max-width: ?px; property because the width should be set to 100%;

    
25.10.2015 / 01:28
0

Andrew, you have subscribed to the rule of that class ... depending on the context you may lose responsiveness, since if your code comes after the library call, the rules you wrote will overwrite all previous ones. I recommend using the grid to be your wrap and develop the module inside it, or the other way around. It is not very cool to put the classes of grids and containers in your divs, or block tags, this limits you to the behavior of the framework.

    
23.10.2015 / 07:26