Edit in JSFiddle


              
<p>Bu bir paragraftır.</p>
p:before{
    padding-right: 5px;
    content: "P. başı";
}

p:after{
    padding-left: 5px;
    content: "P. sonu";
}

p:first-line{
    color: red;
    background: #000;
}

p:first-letter{
    color: yellow;
}

p::selection{
    background: green;
    color: white;
}

/* Mozilla için */
p::-moz-selection{
    background: green;
    color: white;
}