Home arrow Style Sheets arrow Page 5 - CSS: Text, Fonts, and Tables
STYLE SHEETS

CSS: Text, Fonts, and Tables


We last left off discussing text in CSS. In this article we will finish this discussion, and cover how to manipulate fonts as well. And if time permits, we will also go over tables in CSS. It's a lot of ground to cover, so let's jump right in.

Author Info:
By: James Payne
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
March 17, 2008
TABLE OF CONTENTS:
  1. · CSS: Text, Fonts, and Tables
  2. · Word Wrapping
  3. · Adjusting Your Font Size
  4. · Fonting with Style
  5. · How to Set the Boldness of a Font
  6. · Tables in CSS

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
CSS: Text, Fonts, and Tables - How to Set the Boldness of a Font
(Page 5 of 6 )

You can set the amount of boldness of a font using font-weight. Here is how:


<html>

<head>

<style type="text/css">

p.normal {font-weight: normal}

p.thick {font-weight: bold}

p.thicker {font-weight: 900}

</style>

</head>

<body>

<p class="normal">I'm pretty open-minded</p>

<p class="thick">I'm thick headed.</p>

<p class="thicker">I'm thick headed...er.</p>

</body>

</html>

And lastly:

Setting All of the Font Properties


<html>

<head>

<style type="text/css">

p

{

font: italic small-caps 900 40px impact

}

</style>

</head>

<body>

<p>Attack of the Giant Midgets!</p>

</body>

</html>


blog comments powered by Disqus
STYLE SHEETS ARTICLES

- CSS Combinators: Working with Child Combinat...
- CSS Combinators: Using General Siblings
- Intro to CSS Combinators
- CSS Semicircles and Web Page Headers
- Drawing Circular Shapes with CSS3 and Border...
- More CSS Pagination Link Templates
- CSS Pagination Links
- Animated CSS3 Image Gallery: Advanced Transi...
- CSS3 Animated Image Gallery: Transitions
- CSS3 Properties: Fixed Heights with box-sizi...
- CSS3 Properties: Altering Strokes and 3D Eff...
- CSS3 Properties: Text-Stroke
- CSS3 Transitions: Width and Height Properties
- Creating a Drop Down Menu in CSS3
- Intro to CSS Transitions

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 1 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials