Make the text font size one size smaller using CSS

Explanation

To make the text font size one size smaller using CSS, specify smaller for font-size property.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<style type="text/css"><!--
.importText {
font-size:smaller;
}
--></style>
</head>
<body>
<h1>Sample</h1>
<p>
The text font size can be <span class="importText">made one size smaller</span>.
</p>
</body>
</html>