Home > Web Front-end > CSS Tutorial > How to Remove Unwanted Padding and Margin from Bootstrap 3 Columns?

How to Remove Unwanted Padding and Margin from Bootstrap 3 Columns?

Patricia Arquette
Release: 2024-12-25 12:28:08
Original
372 people have browsed it

How to Remove Unwanted Padding and Margin from Bootstrap 3 Columns?

Removing Padding from Columns in Bootstrap 3

When using Bootstrap 3's grid system, it's common to encounter extra padding or margin around columns. Here's how to remove it:

In your code:

<div class="col-md-12">
    <h2 class="h2">OntoExplorer.<span>
Copy after login

You've wrapped two columns (col-md-4 and col-md-8) inside a col-md-12 column. By default, a col-md-12 occupies the entire row, including the margins and padding, and thus introduces unwanted extra space.

To fix this, use .row instead of .col-md-12 as the parent container. This will ensure that the two columns are rendered side-by-side without any unnecessary padding or margin:

<div class="container">
    <div class="row">
        <h2 class="h2">OntoExplorer.<span>
Copy after login

If you still want to remove the padding or margin from individual columns, you can add a custom CSS class like this:

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}
Copy after login

Then, apply this class to the columns you want to remove the padding or margin from:

<div class="col-md-4 nopadding">
Copy after login

The above is the detailed content of How to Remove Unwanted Padding and Margin from Bootstrap 3 Columns?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template