I have a telerik grid I am using in an MVC app. The parent div width is set to a max size, and the table is also set to a max-size, but the table portion seems to be ignoring it, even though when I go into the web developer tools, I can see the width.
The html is basically:
<div id="main">
<div id="grid">
<table id="TeleTable">
</table
</div>
</div>
css:
#main { width: 900px; margin 0 auto; }
#grid { max-width: 900px; }
#TeleTable { max-width: 900px; margin 0px; padding 0px; }
I have also tried width: 100% on the table and increasing the Main width, to no avail.
Thank you reading my post.