Title: Column Gutter width
Last modified: April 22, 2020

---

# Column Gutter width

 *  Resolved [Johan WALTER](https://wordpress.org/support/users/johan_walter/)
 * (@johan_walter)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/column-gutter-width/)
 * Hi
 * I need a row wwith 5 columns without any space between columns (gutter)
    I found
   this topic [https://wordpress.org/support/topic/change-the-gutter-width-when-using-two-columns/](https://wordpress.org/support/topic/change-the-gutter-width-when-using-two-columns/)
 * I tried the following
 *     ```
       .has-5-columns .wp-block-column:nth-of-type(2) {
           margin-left: 0;
       }
       ```
   
 * It does not work
 * I tried this one
 *     ```
       .has-5-columns.wp-block-column:not(:first-child) {
           margin-left: 0;
       }
       ```
   
 * It does not work netiher
 * If I use this code
 *     ```
       .wp-block-column:not(:first-child) {
           margin-left: 0;
       }
       ```
   
 * It works but applied to all columns (2 or 3)
 * I tried this code
 *     ```
        .wp-block-column:nth-of-type(2) {
           margin-left: 0;
       }
       ```
   
 * It also work but same than previous one, no gutter on all columns (2 or 3 etc….)
 * Is there any chance to have this option included in block column ?
    Meanwhile,
   an you please help to have no gutter between column ?
 * Thanks
 * Johan

Viewing 1 replies (of 1 total)

 *  Thread Starter [Johan WALTER](https://wordpress.org/support/users/johan_walter/)
 * (@johan_walter)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/column-gutter-width/#post-12728821)
 * I found solution to have no space between column
 * I create a custom CSS
 *     ```
       .columns-no-space .wp-block-column:not(:first-child) {
           margin-left: 0;
       }
       ```
   
 * then add in advanced of block COLUMN
 *     ```
       columns-no-space .wp-block-column:not(:first-child)
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Column Gutter width’ is closed to new replies.

 * ![](https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042)
 * [Gutenberg](https://wordpress.org/plugins/gutenberg/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gutenberg/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gutenberg/)
 * [Active Topics](https://wordpress.org/support/plugin/gutenberg/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gutenberg/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gutenberg/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [Johan WALTER](https://wordpress.org/support/users/johan_walter/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/column-gutter-width/#post-12728821)
 * Status: resolved