From codebehind I add to my webpart controls
_grid=new SPGridView()
HtmlGenericControl div = new HtmlGenericControl("div");
div.Attributes.Add("id", "div-datagrid");
div.Attributes.Add("style", "overflow: auto;");
div.Controls.Add(_grid);
Controls.Add(div);
The problem is that entire page is scrolling instead only my grid.
Result is as on the picture:

How to enable scrolling only for that grid?