:first-letter
In this chapter you will learn:
Description
The :first-letter
selector adds style to the first letter of
the specified selector.
Example
<!DOCTYPE html><!-- j a va2 s.c o m-->
<html>
<head>
<style>
p:first-letter{
font-size:200%;
color:#8A2BE2;
}
</style>
</head>
<body>
<p>java2s.com</p>
<p>www.java2s.com</p>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
Home » HTML CSS Tutorial » CSS Selector Reference