Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Windows Tipps & SecurityGrafikkarte vor Überhitzung schützen: So geht’s(25.09.2026 um 08:00 Uhr)
••••••••••
Intelligence View
⚡ tsecurity.de Intelligence

CSS corner-shape is here. Your buttons will never look the same

You have been using border-radius since 2010. It gives you round corners. That is it. One shape. Forever. CSS just shipped a new property called corner-shape, and it changes the whole game. Same border-radius you already know, but now you…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

You have been using border-radius since 2010. It gives you round corners. That is it. One shape. Forever.



CSS just shipped a new property called corner-shape, and it changes the whole game. Same border-radius you already know, but now you control the shape of that corner. Round, flat, scooped inward, notched sharp, six shapes out of the box.




⚠️ Heads up: This is experimental and currently only supported in Chrome Canary (behind a flag). Always check browser compatibility before shipping.










The one rule to remember



corner-shape does nothing without border-radius. Think of it like this: border-radius draws the corner area, and corner-shape decides what lives inside it.




/* This does nothing */
corner-shape: scoop;

/* This works! */
border-radius: 30px;
corner-shape: scoop;












All 6 shapes, explained



example image



Here are all the keyword values you can use:




































Value What it looks like
round The classic smooth curve. Default behavior.
squircle Somewhere between a square and a circle. Famously used by iOS icons.
bevel A straight diagonal cut across the corner.
scoop The corner curves inward. The opposite of round.
notch A hard, angular inward cut. Like a chip taken out.
square No rounding at all. Cancels border-radius visually.








Code examples






1. bevel — the flat-cut corner



Great for game UI or industrial design vibes.




.card {
border-radius: 20px;
corner-shape: bevel;
background: #EEEDFE;
border: 2px solid #534AB7;
}






Output: A box with straight diagonal lines cutting across each corner instead of curves.









2. scoop — the concave corner



The opposite of round. The corner curves inward. Borders, shadows, and background all follow it automatically — no extra work.




.badge {
border-radius: 30px;
corner-shape: scoop;
background: cyan;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}






Output: A box where each corner scoops inward, and even the box-shadow wraps around the concave shape.









3. notch — sharp inward cut



A hard, angular notch. The extreme version of scoop.




.button {
border-radius: 16px;
corner-shape: notch;
padding: 12px 24px;
background: #534AB7;
color: white;
}






Output: A button with sharp V-shaped cuts at every corner.









4. Mix and match corners



Just like border-radius, you can set different shapes per corner.





  • One value → all four corners


  • Two values → top-left & bottom-right, then top-right & bottom-left


  • Four values → top-left, top-right, bottom-right, bottom-left (clockwise)




.mixed {
border-radius: 40px;
corner-shape: scoop notch;
/* top-left & bottom-right = scoop */
/* top-right & bottom-left = notch */
}






Output: A box where opposite corners have different shapes, two scooped in, two sharply notched.









Bonus: animate it!



All corner-shape values can be smoothly animated between each other. CSS interpolates the corner math for you, no JavaScript needed.




.button {
border-radius: 24px;
corner-shape: squircle;
padding: 12px 32px;
background: #534AB7;
color: white;
border: none;

}

.button:hover {
animation: morph-corners 0.5s infinite alternate ease-in-out;
}

@keyframes morph-corners {
0% { corner-shape: round; border-radius: 24px; }
33% { corner-shape: bevel; border-radius: 24px; }
66% { corner-shape: scoop; border-radius: 24px; }
100% { corner-shape: notch; border-radius: 24px; }
}






Output: A circle that morphs its corners from square to notched and back endlessly.









Here are three real-world uses for corner-shape:





  1. Pricing cards — Use scoop corners to make a premium card feel distinctive without reaching for SVG or clip-path.


  2. Buttons — Use bevel for a retro game-controller aesthetic or notch for a sci-fi UI feel.


  3. Tags and badges — Mix squircle with a small border-radius for that iOS-app-icon polish everyone loves.









Conclusion



corner-shape is a small property with a big personality. Once it lands in stable browsers, you will stop reaching for SVGs and clip-paths just to get an interesting corner. One line of CSS does the job.



It is still experimental, so keep an eye on browser support. But now you know exactly how it works when it ships.



I hope you found this helpful! If you enjoyed this, check out my article on CSS Grid for some must-save techniques. 🚀



Drop a 🦄 if you want to see a deep dive into the superellipse()function next!

1. Sofort-Triage & Abwehrmaßnahmen

SOC Incident Playbook: Vulnerability Remediation & Verification
Syntax validiert (0 Fehler)
title: Detect Exploitation - CSS corner-shape is here. Your buttons will never look the same
id: 50e8569c-48db-41a3-a58d-4fae76e18ad3
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-26
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
Syntax validiert (0 Fehler)
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-26"
        description = "YARA Signature for "
    strings:
        $str = "CSS corner-shape is here. Your" ascii wide
    condition:
        any of them
}
Syntax validiert (0 Fehler)
index=security sourcetype IN ("cisco:asa", "pan:traffic", "zeek_conn", "suricata", "WinEventLog:Security")
("CSS corner-shape is here Your buttons wi")
| stats count earliest(_time) as first_seen latest(_time) as last_seen by src_ip, dest_ip, dest_host, signature
| eval first_seen=strftime(first_seen, "%Y-%m-%d %H:%M:%S"), last_seen=strftime(last_seen, "%Y-%m-%d %H:%M:%S")
| sort - count
Syntax validiert (0 Fehler)
message: "*CSS corner-shape is here Your buttons wi*"
Syntax validiert (0 Fehler)
CommonSecurityLog
| where Message has "CSS corner-shape is here Your buttons wi"
| summarize EventCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated) by SourceIP, DestinationIP, DestinationPort, Activity
| extend DetectionRule = "iShareStuff-CTI-Compiled"
| sort by EventCount desc

2. Cyber Threat Intelligence & Forensik

🎯
MITRE ATT&CK Matrix Navigator 14 Taktiken
Reconnaissance
-
Resource Development
-
Initial Access
Execution
Persistence
-
Privilege Escalation
Defense Evasion
Credential Access
-
Discovery
-
Lateral Movement
-
Collection
-
Command and Control
Exfiltration
-
Impact
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich CSS corner-shape is here. Your buttons w.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten CSS corner-shape is here. Your buttons will never look the same

Thematisch verwandte Begriffe: cornershape, here, Your, buttons · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-100503 | Ghidra versions through 12.1.4 contain a heap use-after-free vulnerabil…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag