Removing padding of nested columns on Visual Composer rows

Hello, I’m using following style to remove Right & Left padding of nested columns on VC rows. So do you have any practice about it and is it okay?

.vc_row-fluid .vc_row.vc_inner {
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
}
.vc_row-fluid .vc_row.vc_inner div:first-child {
	padding-left: 0;
}
.vc_row-fluid .vc_row.vc_inner div:last-child {
	padding-right: 0;
}

Hmm it doesn’t work when I add following layout. Please share your experience with it and I didn’t get a solution from VC support team, looks hired staffs are not efficient though

this is working for me

.vc_row-fluid .vc_row.vc_inner [class*='vc_col-']:first-child { padding-left: 0; } .vc_row-fluid .vc_row.vc_inner [class*='vc_col-']:last-child { padding-right: 0; }