<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>Test : Selectors : Pseudo : first-letter</title>
        <style type="text/css">
           p { border: 1px solid black;}
           p:first-letter { 
            color: blue;
            font-size: 30pt;
            }
            b { font-size: 30pt; }
        </style>
    </head>
    
    <body>
        <p>This is a paragraph <b>with</b> the first letter blue</p>
    </body>

</html>