element.style before GridView

1

I have a GridView inside a /table/tr/td/grdviuw tag. My gridviuw has a css.

The problem is that when it is rendered, it leaves a space apparently after the grid and the buttons that I have below the grid look very low, far from the grid.

When I look at the code html in the browser, I see that a div with a height of 300px appears before the grid, but I do not know how to adjust that height since that div is not in my code and the style of that div appears like this:

element.style {    
    overflow: auto;
    height: 300px; //cuando quito esto desde el explorador, me queda perfecto
    width: 740px;
}

How do I get to that style?:

    
asked by Carolina 09.05.2017 в 15:41
source

1 answer

0

If in addition to the div you only have the text without any label you could simply put

td div{
    display:none;
}

If you do not have just that element, try to add a class to that td and play with the property display:none

    
answered by 11.05.2017 в 22:48