Cooler CSS NEON Text Effekt (Nur CSS und HTML) [Anleitung / Tutorial]

von | Sep. 25, 2019 | Allgemein | 0 Kommentare

Schlagwörter: CSS - Tutorial

Im heutigen Tutorial zeige ich euch wie man eine coole Neon Leuchtschrift macht in dem man die CSS Schattenfunktion verwendet.

Video / Anleitung

Google Font

<link href="https://fonts.googleapis.com/css?family=Bungee+Outline&display=swap" rel="stylesheet">

CSS

.container {
        font-family: 'Bungee Outline', cursive;
        height: 500px;
        width: 500px;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color:#242424;
        font-size: 60px;
        text-align: center;
        letter-spacing: 12px;
        color: #ffffff;
    }
    
    .neon1 {
        text-shadow: 0 0 5px #39ff14,
                    0 0 20px #39ff14,
                    0 0 40px #39ff14,
                   0 0 60px #39ff14;
    }
    .neon2 {
        text-shadow: 0 0 5px #4d4dff,
                    0 0 20px #4d4dff,
                    0 0 40px #4d4dff,
                   0 0 60px #4d4dff;
        
    }
    .neon3 {
        text-shadow: 0 0 5px #ff69b4,
                    0 0 20px #ff69b4,
                    0 0 40px #ff69b4,
                   0 0 60px #ff69b4;
        
    }

HTML

<div class="container">  
<div class="neon1">Ich</div>
<div class="neon2">bin</div>
<div class="neon3">Blogger</div>
</div>

0 Kommentare

Einen Kommentar abschicken

Du kannst auf Fediverse-Profile verlinken, indem du fl:@benutzername in deinem Kommentar eingibst.

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert