For this you will need to use the media query of css 3. Let’s look at your example:
All elements containing the class .borda
should have a 1px border on devices with screen less than 768px wide (mobile phones), so in CSS we must define the following rules:
/* Todos os elementos que contenham a classe 'borda' terão uma borda de 1px preta */
.borda{ border: 1px solid #000; }
/* Agora apenas os dispositivos que tenham resolução menor que 768px terão borda */
@media (min-width: 768px){
.borda{ border: none; }
}
Note: The above example was given based on this link
You can customize the Bootstrap, for example: the breakpoints, the components, etc. It would be this?
– Renan Gomes
If I understand correctly you are looking for Responsive. Have a look at: http://www.w3schools.com/html/html_responsive.asp, which already talks about Boostrap.
– Franchesco