skip to Main Content

CSS text-shadow clips when applied to an input field

When I apply text-shadow on an input field the shadow seems to clip around the text. I tried this CSS code @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap'); * { padding: 0; margin: 0; box-sizing: border-box; } body { background: #000000; width: 100vw; height: 100vh;…

VIEW QUESTION

Problem with first of type in css and nobody knows why

"first of type" dont like to work: .elements { width:70%; margin:0 auto; display:flex; flex-direction: column; .addElement { width:280px; text-align: center; border:1px solid black; font-family: "Playwrite CO", cursive; margin-bottom: 25px; &:hover { cursor: pointer; } } &__newElement { display: inline-block; margin-top:10px;…

VIEW QUESTION

Complex gradient in css

I have a gradient I'm trying to make in CSS. I added the Figma settings and an image of the gradient. This is the code I tried and just got a circle: background: radial-gradient(circle, rgba(118, 60, 172, 1.00) 0%, rgba(50,…

VIEW QUESTION
Back To Top
Search