| The CSS Tag | The tags effect | 
|---|---|
| text-shadow: 3px 4px #FF0000; values text-shadow: h-shadow v-shadow blur color;  | 
			Text-shadow effect | 
		
| Pseudo Classes :class | |
| h4:before { content: 'BEFORE... '; } | Testing Text | 
		
| h4:after { content: '...AFTER'; } | Testing Text | 
		
| input:focus { background-color:yellow; } | Input Form Field | 
| p:first-letter  { color:#ff0000; font-size:xx-large; font-family: Vivaldi;} p:first-line {color:#00ff00; font-family:Courier;}  | 
			You can use the :first-letter pseudo-element to add a special effect to the first character of a text! You can also use it on a specific line of teh text. If I wanted to make the last line of the text in a give element green I could do this is so desiered.  |