When i load a page inside a DIV with Jquery load function, table cellpadding and padding css attribute on table tag doesn’t work.
Is this a normal behavior ?
Code to load page
$("#ajax_content").load("page.php", function () {
})
Table tag on the page.php
<table cellpadding="2px" style="background-color: white;width: 550px; height: 34px;padding:10px">
Thanks
EDIT:
I found the problem !
In the main page that i am loading page.php to there is a css code like this
table {border-collapse:collapse;}
problem is that and it works great now after i deleted it.
I found the problem ! In the main page that i am loading page.php to there is a css code like this
problem is that and it works great now after i deleted it.