CSSCSS · Lesson 07Backgrounds, Borders & ShadowsGradients, radius, outline, box-shadow and glows.Video tutorialTrack course · freeCodeCampCSS Full Course — Zero to Hero Speed0.75x1x1.25x1.5x2x Skip intro Next lessonWatch 00:00 · 1 checkpoints Watch on YouTube More on this topic Transcript & captions .txt2/200:00Backgrounds, Borders & Shadows. Gradients, radius, outline, box-shadow and glows.00:05Try it yourself — edit the sample and run it in the browser.Try it yourself Copy Reset Run<style> body{background:#0b1020;font-family:system-ui} .card { padding:24px; color:#fff; border-radius:14px; background: linear-gradient(135deg,#0891b2,#7c3aed); box-shadow: 0 0 24px rgba(34,211,238,.5), inset 0 1px 0 rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.15); } </style> <div class="card">Neon gradient card</div>Knowledge check0/1 answeredWhich value makes a box-shadow render inside the element?innerinsetclipMark as complete PreviousTypographyNext Display & Position