Hi, just wondering quickly. If I do some CSS on a class like
table{
...
}
Will it still be applied if my table is created in PHP?
echo ' <table>';
Obviously it works without PHP, just wondering if it will still work with it?
cheers
Hi, just wondering quickly. If I do some CSS on a class like
table{
...
}
Will it still be applied if my table is created in PHP?
echo ' <table>';
Obviously it works without PHP, just wondering if it will still work with it?
cheers
yes because php will generate the html (using echo or whatever) and then send it back to the browser (along with the css) just as if the php generated html was originally in a plain vanilla html file on the server and not generated by php.