Bootstrap

bootstrap overriding

How do I override bootstrap.css so that I remove the style for an anchor/class? For example, if I want to remove some or all the styling rules for legend: legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333333; border: 0; border-bottom: 1px solid #e5e5e5; } Would you use !important like this: legend { display: inherit !important; width: 100%; padding: 0; margin-bottom: inherit !

Continue reading