CodeAve.com CodeAve.com - CSS - Basics
ASP
JavaScript
CSS
·Basics
·Page Display
·Text Display
·Script Writers
·Contents
·What's New?
HTML
Maps
Links
Mail List
Search
Sitemap


 


Grouping
Repetitive commands within CSS can be grouped in order to cut back on the repetition of code sent to the client to be interpreted. This enables you to give several tags similar attributes without have to explicitly state each command over and over. In this example we’ve set the table, center, p and div tags (all comma delimited) to display the font color to red. Only the text within those tags will be effected and all will be done with one command instead of four separate statements.
View the Output
Text View
Print View
Mail this Link
Download the Code

<html>
<head>
<title>CodeAve.com/CSS - Text Case</title>
<style type="text/css">
<!--
table, center, p, div { color: #FF0000 }

/* Grouping tags within CSS allows you to assign the same attributes
to many html tags. In this example any text within the <center>,
<p>, <div> or <table> will be colored red and other text will use 
the default browser colors. All grouping are comma delimited */
-->
</style>



</head>
<body bgcolor="#FFFFFF">

Regular document text not affected by style sheet
<br>
<br>

<div>Text within &lt;div&gt; tags</div>

<p>Text within &lt;p&gt; tags</p>

<center>Text within &lt;center&gt; tags</center>

<table align="center" border="1">
<tr><td>Text within &lt;table&gt; tags</td></tr>
</table>
</body>
</html>

 

 

 



ASP: What's New? | Articles | Script Writers | Database Display | Read/Write
Server Variables | Response Objects | Random Events | Miscellaneous
HTML: Forms | Hyperlinks | Headers | Tables | Hyperlinks | Headers | Text Display
JavaScript: Document Info | Forms | Images | Navigation | Script Writers
CSS: Basics | Page Display | Text Display | Script Writers | Miscellaneous
Maps: Map Script Writers | Bing Maps | Google Maps
Privacy Statement

CodeAve.com is hosted by MyHosting.com
Donate Food Online with a Mouse Click at TheHungerSite.com
Donate Land Online with a Mouse Click at TheRainForestSite.com
© 1999 - 2010 CodeAve.com
All Rights Reserved