Discussion Forums HTML, XML, JavaScript... |
 |
Software Reviews Editors,Others... |
 |
Top100 JavaScript Tutorials, ... |
 |
Tutorials ASP, CSS, Databases... |
Discussion List FAQ, Roundup, Configure ... |
 |
Authoring HTML, JavaScript, CSS... |
 |
Design Layout, Navigation,... |
 |
Graphics Tools, Colors, Images...
|
 |
Software Browsers, Editors, XML...
|
 |
Internet Domains, E-Commerce, ... |
 |
WDVL Resources Intermdiate, Tutorials,... |
 |
WDVL Discussion Lists, Top 100,... |
 |
| Technology Jobs |
 |
|
 |
Get the SOA Development Survival Guide
Get started understanding the benefits and tools needed for service-oriented architecture development. Includes whitepapers, Webcasts, and articles.
»
IBM Rational Systems Development Solution eKit
As systems increase in complexity, communication between systems and teams becomes more and more difficult. Read the "Model Driven Systems Development" whitepaper to see how to improve product quality. Also included are more whitepapers, customer examples, tutorials, informative Webcasts, and best practices for designing, building, and managing systems.
»
Webcast: Succeed with Asset-Based Development: Introducing Rational Asset Manager
Learn how IBM Rational Asset Manager enables organizations to identify, manage and govern the design, development and consumption of software assets, including services, as part of an SOA initiative. Learn about the key challenges of asset-based development and how IBM Rational Asset Manager can help provide the solutions.
»
Download: IBM Rational Rose Technical Developer
IBM Rational Rose Technical Developer is a robust Model-Driven Development (MDD) solution, expressly created to meet the challenges of complex systems development. Based on UML, Rational Rose Technical Developer provides a highly-automated and reliable solution to the unique problems of concurrency and distribution.
»
|
 |
|
|
|
|
|
July 26, 1998
 |
 |
Putting Style Sheets in Perspective
text-transform
|
- Initial Value:
- none
- Allowed Values:
- capitalize
- uppercase
- lowercase
- none
- Applies to:
- All elements
- Inherited?:
- yes
|
capitalize
The capitalize property capitalizes the first letter of each word.
uppercase
Uppercase transforms everything inside the containing element to
uppercase letters.
lowercase
All characters are lowercase.
<STYLE TYPE="text/css">
<!--
.cap {text-transform: capitalize;}
-->
</STYLE>
</HEAD><BODY>
<SPAN class="cap">capitalized text</SPAN>>
|
capitalized text
|
<STYLE TYPE="text/css">
<!--
.up {text-transform: uppercase;}
-->
</STYLE>
</HEAD><BODY>
<SPAN class="up">all upper case text</SPAN>
|
all upper case text |
<STYLE TYPE="text/css">
<!--
.low {text-transform: lowercase;}
-->
</STYLE>
</HEAD><BODY>
<SPAN class="low">Lowercase text</SPAN>
|
Lowercase text
|
|
Notice in the examples that even though the source text is
typed opposite from the property setting, it displays
according to the value set in the property.
|
Additional Resources:
Putting Style Sheets in Perspective: text-decoration
Putting Style Sheets in Perspective: Table of Contents
Putting Style Sheets in Perspective: Part 2 Summary
|
|