JSFiddle - React, Tailwind, and code Playground
by ibasoglu
HTML
<p>Bu bir paragraftır.</p>
CSS
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;
}