Last active
February 9, 2017 13:43
-
-
Save Lego2012/8c07a7dc04d83852a303b75eb866221b to your computer and use it in GitHub Desktop.
Erstes Zeichen formatieren
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
text-transform: uppercase; | |
font-weight: bold; | |
font-size: 28px; | |
} | |
/* | |
Mit :first-letter können wir das erste Zeichnen eines Elementes formatieren. Wir nutzen dies um den ersten Buchstaben von unserem p-Tag uppercase, bold und in 28px darzustellen. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment