html - overflow:scrol doesn't show the scroll -


i using asp.net 4

problem

the scrol not shown

asp code

<div id="tabs-1">                         <asp:scriptmanager id="scriptmanager2" runat="server" />                         <asp:updatepanel id="updatepanel3" updatemode="conditional" runat="server">                             <contenttemplate>                                 <table id="bookingtable" runat="server" class="tableresultclass">                                     <tr>                                         <th>id</th>                                         <th>plantime</th>                                     </tr>                                 </table>                             </contenttemplate>                             <triggers>                                 <asp:asyncpostbacktrigger controlid="mealtimeselector" />                             </triggers>                         </asp:updatepanel>                     </div> 

the css of tableresultclass

.tableresultclass{         overflow:scroll;         border:1px solid #d3d3d3;         background:#fefefe;         width:90%;         margin:5% auto 0;         -moz-border-radius:5px; /* ff1+ */         -webkit-border-radius:5px; /* saf3-4 */         border-radius:5px;         -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);         -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);     } 

the css of parent

http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css

create div surrounding table , apply css class div. overflow doesn't apply tables.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -