
Originally Posted by
tracy78
The only way I can see is to create 3 separate Style Classes that are identical with the exception of the
top: expression.... part which will have a different ID for each table.
Would that be so bad? You can also give an element more than one class:
class="standard extra"
Example:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.one {
color:red;
}
.two {
background-color:blue;
}
</style>
</head>
<body>
<div class="one two">Hi</div>
</body>
</html>
Bookmarks