kojirosan
kojirosan

Reputation: 507

DataTable Table CSS Blank Space Issue

I am using DataTable in my project and i have a strange issue. Click to see my DataTable example

I attached a picture which is about my problem.

How can i remove the blank space with filter buttons and column headers?

Blank space

It looks like when i use Google Chrome Web Inspector.

Chrome View

Upvotes: 0

Views: 1762

Answers (1)

opalenzuela
opalenzuela

Reputation: 3171

You can try to override the margin.top property like that:

#example.dataTable {
    margin-top: 0px!important;
}

Note: If you prepare a JSfiddle we can see the code and fix it for you...

Upvotes: 1

Related Questions