Paragraphs!
Here's where you can find paragraph modifications to spice up your page! Add a little flair to your text!
Remember to visit the Implementation page before trying a snippet!
All Paragraph Elements
The fact that this site isn't raking in cash is criminal!
Big First Letters
Makes the first letter of your text big! How fancy.
HTML:
<p class="big-letter">The fact that this site isn't raking in cash is criminal!</p>
CSS:
.big-letter::first-letter {
font-size: 40px;
}
Censorable Text
You've seen text you select to uncensor, but have you ever seen text you can CENSOR YOURSELF?!
HTML:
(This applies to any text on a page with the below CSS.)
If you'd like to only censor certain parts,
consider using iframes to include a page with the css into a page without it,
making it so you can censor only the iframe's text, as shown off in the box.)
CSS:
::selection {
background: black;
color: black;
}
This ain't no spam; It's SPAN!
The <span> Tag
The span tag is a useful tag for styling, allowing you to
style only specific parts of text. It's like the text version of div.
HTML:
<p>This ain't no spam;
<span class="spanexample">It's SPAN!</span>
</p>
CSS:
.spanexample {
background-color: yellow;
}