[EDIT] [SOLVED] I just replaced all my tag with tag with css as inline for all table that doesn't apply any bootstrap css class properties. Thanks all for reply.
In my yii app I having twitter bootstrap css and for some static pages I need css from style.css that I created.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<style type="text/css">
#mystyle
{
/* my styles classes */
}
</style>
</head>
<body>
<div class="mystyle">
/* html */
</div>
</body
</html>
here bootstrap css is also get applies.
how can i restrict this html page not to include bootstrap css??
I tried by using tag but that not work.