Friday, 27 April 2018

Gridview Horizontal scroll using css on div in asp.net

//////////CSS

div.scrollTable
        {
            overflow: auto;
            white-space: nowrap;
        }
       
        div.scrollTable a
        {
            display: inline-block;
            text-align: center;
            padding: 14px;
            text-decoration: none;
        }



///////////////////// HTML


<div class="scrollTable">
 <asp:GridView runat="server" ID="GV_Reports" AutoGenerateColumns="true" Font-Names="Arial" CssClass="table table-striped table-bordered table-hover table-responsive" Style="width: 100%;"></asp:GridView></div>



///////////Result


No comments:

Post a Comment

How to highlight selected text in notepad++

  –> To highlight a block of code in Notepad++, please do the following steps step-1  :- Select the required text. step-2  :- Right click...