CSS Selector :first-letter

Description

The :first-letter selector adds style to the first letter of the specified selector.

Example


<!DOCTYPE html>
<html>
<head>
<style>
p:first-letter{<!--  ww w .j  av a2s.  c o m-->
    font-size:200%;
    color:#8A2BE2;
}
</style>
</head>
<body>
    <p>java2s.com</p>
    <p>www.java2s.com</p>

</body>
</html>

Click to view the demo

The code above generates the following result.

:first-letter




















Home »
  HTML CSS »
    HTML CSS Reference »




HTML Tag Reference
CSS Reference
CSS Selector Reference
Encoding Reference