#nanoucodingcy risultati di ricerca

Night Coding ๐ŸŒ™ Sessions #nanoucodingcy

NanouuSymeon's tweet image. Night Coding ๐ŸŒ™ Sessions #nanoucodingcy

New Journal 2024 โค๏ธ #nanoucodingcy

NanouuSymeon's tweet image. New Journal 2024 โค๏ธ #nanoucodingcy

Beautiful Conic Gradient ๐Ÿ‘‡๐Ÿป Code: div { background-image: conic-gradient(aqua, deeppink, orange, aqua); width: 400px; height: 400px; border-radius: 50%; } #nanoucodingcy

NanouuSymeon's tweet image. Beautiful Conic Gradient ๐Ÿ‘‡๐Ÿป
Code:
div {
     background-image: conic-gradient(aqua, deeppink, 
     orange, aqua);  
     width: 400px;
     height: 400px;
     border-radius: 50%;
} #nanoucodingcy

Pure CSS Drop ๐Ÿ’ง #nanoucodingcy .drop { background: linear-gradient(220deg, #affbff 10%, #0093b1 100%); border-radius: 50% 0% 50% 50%; box-shadow: inset 10px -5px 2px 3px rgba(0,0,0,0.1), inset -15px -5px 2px 5px rgba(255,255,255,0.1); transform: rotate(-45deg); }

NanouuSymeon's tweet image. Pure CSS Drop ๐Ÿ’ง #nanoucodingcy

.drop {
 background: linear-gradient(220deg, #affbff 10%, #0093b1 100%);
  border-radius: 50% 0% 50% 50%;
  box-shadow: inset 10px -5px 2px 3px rgba(0,0,0,0.1),
    inset -15px -5px 2px 5px rgba(255,255,255,0.1);
  transform: rotate(-45deg);
}

Easiest Header Line to use in your projects or portfolio! .header { position: relative; height: 10px; background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%); } #nanoucodingcy

NanouuSymeon's tweet image. Easiest Header Line to use in your projects or portfolio!

.header {
position: relative;
height: 10px;
background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%);
} #nanoucodingcy

3 years and still my favourite keyboard ๐Ÿ˜ #nanoucodingcy


Day 7: ๐Ÿ“ฑ Mobile-Centered Elements: When working on responsive design, use media queries to adjust your centering techniques for different screen sizes. #nanoucodingcy


Most Important CSS Properties to help you build a website ๐Ÿ‘‡ #nanoucodingcy ๐Ÿ–Œ Background-color ๐Ÿ“ Margin ๐Ÿ“ Padding ๐Ÿ Cursor ๐Ÿ†—๏ธ Font-size ๐Ÿ†—๏ธ Font-family ๐Ÿ–ฑ :hover ๐ŸŽจ Color ๐Ÿ”ฅ Display ๐ŸŒ  Opacity ๐Ÿ“ Width ๐Ÿ“ Height ๐Ÿ”ณ Border โบ Border-radius ๐Ÿš€ Float ๐Ÿ”  Letter-spacingโ€ฆ


CSS 3D Transform using perspective ๐Ÿ‘‡ .red { width: 100px; background-color: red; height: 100px; transform: perspective(400px) rotateY(45deg); } #nanoucodingcy


Super easy Triangle Background! โœ๏ธ Code: body { margin: auto; } div { width: 100vw; height: 100vh; } .triangle:after { content: ' '; position: absolute; border-top: 100vh solid #63B7B7; border-right: 100vw solid orange; } #nanoucodingcy


Difference between: width: 100%; and width: auto; .box1 p { background: white; border: 2px solid black; padding: 1em; width: 100%; } .box2 p { background: white; border: 2px solid black; padding: 1em; width: auto; } #nanoucodingcy


Find a Remote job, here ๐Ÿ‘‡ ๐ŸŒ Upwork ๐ŸŒ Freelancer ๐ŸŽจ Fiverr ๐Ÿ’ผ Remote .co ๐Ÿ” FlexJobs ๐Ÿ’ป We Work Remotely ๐Ÿš€ GitHub Jobs ๐Ÿ˜‡ AngelList ๐Ÿ”Ž Indeed #nanoucodingcy


Day 8: ๐ŸŒ Centering a Block of Text: For text centering, apply "text-align: center;" to the parent element containing the text. #nanoucodingcy


HTML/CSS project ideas ๐ŸŒป #nanoucodingcy ๐Ÿ“ฐ Image generator website ๐Ÿงฎ Random numbers generator โœ๏ธ Personal Portfolio ๐Ÿ”ฅ Weather landing page ๐Ÿ“ž Contact form โ˜•๏ธ Dev Resume ๐Ÿช 3D Model Solar System ๐Ÿ“น Video Background Site ๐ŸŽจ Album Layout


Day 2: ๐ŸŽฏ Centering Vertically: For vertical centering, you can use "display: flex;" on the parent container and "align-items: center;" to center child elements vertically. #nanoucodingcy


Day 9: ๐Ÿ” Centering with CSS Transforms: Transforms like "translate" can also be used for centering. Apply "transform: translate(-50%, -50%);" to horizontally and vertically center an element. #nanoucodingcy


Day 6: ๐Ÿ”— Grid for Centering: Grid layout also offers simple centering. Use "display: grid;" on the parent and "place-items: center;" to center child elements. #nanoucodingcy


Day 1: ๐Ÿ’ก Centering Horizontally: To horizontally center an element, use "margin: 0 auto;" on the element. It's a quick and easy way to center block-level elements. #nanoucodingcy


Day 3: ๐ŸŒŸ Centering Both Horizontally and Vertically: To center an element both horizontally and vertically, combine the "flex" method for the parent and "margin: auto;" for the child element. #nanoucodingcy


Day 5: ๐Ÿ“ Centering an Element with Absolute Positioning: For precise control, use "position: absolute;" along with "top: 50%;" and "left: 50%;" to center elements within a relative parent. Then, adjust with negative margins. #nanoucodingcy


CSS 3D Transform using perspective ๐Ÿ‘‡ .red { width: 100px; background-color: red; height: 100px; transform: perspective(400px) rotateY(45deg); } #nanoucodingcy


Super easy Triangle Background! โœ๏ธ Code: body { margin: auto; } div { width: 100vw; height: 100vh; } .triangle:after { content: ' '; position: absolute; border-top: 100vh solid #63B7B7; border-right: 100vw solid orange; } #nanoucodingcy


Find a Remote job, here ๐Ÿ‘‡ ๐ŸŒ Upwork ๐ŸŒ Freelancer ๐ŸŽจ Fiverr ๐Ÿ’ผ Remote .co ๐Ÿ” FlexJobs ๐Ÿ’ป We Work Remotely ๐Ÿš€ GitHub Jobs ๐Ÿ˜‡ AngelList ๐Ÿ”Ž Indeed #nanoucodingcy


Nessun risultato per "#nanoucodingcy"

Night Coding ๐ŸŒ™ Sessions #nanoucodingcy

NanouuSymeon's tweet image. Night Coding ๐ŸŒ™ Sessions #nanoucodingcy

New Journal 2024 โค๏ธ #nanoucodingcy

NanouuSymeon's tweet image. New Journal 2024 โค๏ธ #nanoucodingcy

Beautiful Conic Gradient ๐Ÿ‘‡๐Ÿป Code: div { background-image: conic-gradient(aqua, deeppink, orange, aqua); width: 400px; height: 400px; border-radius: 50%; } #nanoucodingcy

NanouuSymeon's tweet image. Beautiful Conic Gradient ๐Ÿ‘‡๐Ÿป
Code:
div {
     background-image: conic-gradient(aqua, deeppink, 
     orange, aqua);  
     width: 400px;
     height: 400px;
     border-radius: 50%;
} #nanoucodingcy

Pure CSS Drop ๐Ÿ’ง #nanoucodingcy .drop { background: linear-gradient(220deg, #affbff 10%, #0093b1 100%); border-radius: 50% 0% 50% 50%; box-shadow: inset 10px -5px 2px 3px rgba(0,0,0,0.1), inset -15px -5px 2px 5px rgba(255,255,255,0.1); transform: rotate(-45deg); }

NanouuSymeon's tweet image. Pure CSS Drop ๐Ÿ’ง #nanoucodingcy

.drop {
 background: linear-gradient(220deg, #affbff 10%, #0093b1 100%);
  border-radius: 50% 0% 50% 50%;
  box-shadow: inset 10px -5px 2px 3px rgba(0,0,0,0.1),
    inset -15px -5px 2px 5px rgba(255,255,255,0.1);
  transform: rotate(-45deg);
}

Easiest Header Line to use in your projects or portfolio! .header { position: relative; height: 10px; background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%); } #nanoucodingcy

NanouuSymeon's tweet image. Easiest Header Line to use in your projects or portfolio!

.header {
position: relative;
height: 10px;
background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%);
} #nanoucodingcy

Loading...

Something went wrong.


Something went wrong.


United States Trends