- Impact
- 19
Is it possible to incorporate more than one style sheet on a page. Can you define certain sections of the webpage to that particular style sheet?
I have a main style sheet that is for the majority of the website. However, I got a second style sheet for an advanced particular table that I want to use. I do not want this table to get mixed up with the rest of my tables.
How can I define that certain part of the page to that particular style sheet?
For Example: This is what the main style sheet code for the entire page looks like.
I would like to add another style sheet for one specific part of this page. Please help. Also, if this is a php page, is my doc type and meta content correct as seen here?
What about this. Can I change the position of the table directly in the html instead of using two css files?
Here is what the beginning of my table looks like:
My table is floating all the way to the right and I cannot center it up for nothing. How can I center this or even align up to the left with the banner margin? Also, what is the table id?
I have a main style sheet that is for the majority of the website. However, I got a second style sheet for an advanced particular table that I want to use. I do not want this table to get mixed up with the rest of my tables.
How can I define that certain part of the page to that particular style sheet?
For Example: This is what the main style sheet code for the entire page looks like.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Blah page</title>
<meta name="description" content="Blah blah blah" />
<meta name="keywords" content="blah blah blah " />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
I would like to add another style sheet for one specific part of this page. Please help. Also, if this is a php page, is my doc type and meta content correct as seen here?
What about this. Can I change the position of the table directly in the html instead of using two css files?
Here is what the beginning of my table looks like:
<div STYLE="height: 500px; width: 500px; font-size: 12px; overflow: auto; ">
<table id="test1" cellpadding="0" cellspacing="0" border="0" class="sortable-onload-5-6r rowstyle-alt colstyle-alt no-arrow">
My table is floating all the way to the right and I cannot center it up for nothing. How can I center this or even align up to the left with the banner margin? Also, what is the table id?






