Пікірлер
@Abolfazlgodarzi-r5l
@Abolfazlgodarzi-r5l 2 күн бұрын
greate🥰🥰
@LoveCare313
@LoveCare313 6 күн бұрын
Very nice !! And thank you for sharing the code.
@Joe-mc7nu
@Joe-mc7nu 8 күн бұрын
how to make that in react js?
@el-husseinsalah2330
@el-husseinsalah2330 Ай бұрын
Great Work Bro!
@vigowebs
@vigowebs Ай бұрын
Thanks 🔥
@hanzo7616
@hanzo7616 Ай бұрын
Is this an automatic slider?
@vigowebs
@vigowebs Ай бұрын
In this slider, I am added option "autoplay" so that it looks like automatic
@khedribrahim
@khedribrahim 2 ай бұрын
THANK YOU BROOOOOOOOOOOOOOOOOOOOOO
@phentem1
@phentem1 2 ай бұрын
how to add swiper js like this vide to elementor wordpress ?
@20ECE07SivaRanjani
@20ECE07SivaRanjani 2 ай бұрын
Very clear explanation sir
@reuelsiIva
@reuelsiIva 2 ай бұрын
the listStyleType doesnt work with emojis?
@vigowebs
@vigowebs 2 ай бұрын
It will work. Check this reference: play.tailwindcss.com/WZtG6W47oq Add the CSS in input file as ul, ol {list-style-type: "😀 ";} In HTML add like this <ol class="list-inside"> <li>Apple</li> <li>Orange</li> <li>Guava</li> </ol>
@vigowebs
@vigowebs 2 ай бұрын
Correction: 0.55s - It is multi slide preview (both voice and title copy in preview document)
@ArshadAli-kn1jy
@ArshadAli-kn1jy 2 ай бұрын
where is multi slider ???? Are you real Teacher..WTF
@Spiderzzzzzzzzzzzz
@Spiderzzzzzzzzzzzz 2 ай бұрын
<div class="bg-yellow-100 h-screen"> <div class="flex justify-center gap-14 pt-[110px]"> <div class="p-10 w-[20%] rounded-full bg-yellow-500 "></div> <div class="p-10 w-[20%] rounded-full bg-yellow-500 "></div> <div class="p-10 w-[20%] rounded-full bg-yellow-500 "></div> </div> </div> i did like this ... few changes
@vigowebs
@vigowebs 2 ай бұрын
Nice, Instead of adding "<div class="p-10 w-[20%] rounded-full bg-yellow-500"></div>" in 3 child div repeatedly. we can use "*:" in parent div like below. This is new update in Tailwind version 3.4 <div class="bg-yellow-100 h-screen"> <div class="flex justify-center gap-14 pt-[110px] *:p-10 *:w-[20%] *:rounded-full *:bg-yellow-500"> <div></div> <div></div> <div></div> </div> </div>
@user-yp2cb5yq8v
@user-yp2cb5yq8v 2 ай бұрын
How to change default navigation buttons(prev, next) on my buttons?
@vigowebs
@vigowebs 2 ай бұрын
By default, swiper provides the following CSS classes: ".swiper-button-next" and ".swiper-button-prev" for styling right and left navigation arrows.
@JeDevvv
@JeDevvv 2 ай бұрын
can you add the source code in the description:>
@vigowebs
@vigowebs 2 ай бұрын
Source code path added in description
@user-ir3cw9on7m
@user-ir3cw9on7m 2 ай бұрын
This is my solution. It does not use the linear gradient approach and consequently makes it a bit easier to understand: <div class="cent"> <div class="tri"></div> </div> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { position: relative; display: flex; align-items: center; justify-content: center; background: #DBBA30; } .tri { position: relative; transform: translate(0px , 30px); width: 0px; height: 0px; border-style: solid; border-width: 0 100px 100px 100px; border-color: transparent transparent #DBBA30 transparent; } .cent { width: 200px; height: 60px; background: #A95415; box-shadow: 0px -70px #A95415, 0px 70px #A95415; } </style>
@TailwindBattle
@TailwindBattle 2 ай бұрын
Glad you are enjoying Tailwind Battle!
@shuctikasarkar1932
@shuctikasarkar1932 2 ай бұрын
multi slider kidhar he ek page me???
@tylerdoyle984
@tylerdoyle984 2 ай бұрын
Thank you for Inspiration Credit! Good work! -KrautGTI
@vasantjk2591
@vasantjk2591 3 ай бұрын
u can remove the #f8B140 in box shadow from all and give color:#f8B140 this will reduce the character
@vigowebs
@vigowebs 3 ай бұрын
Thank you 🙏. Almost 208 characters are reduced.
@nischalparajuli9853
@nischalparajuli9853 3 ай бұрын
Please keep making more❤❤
@nischalparajuli9853
@nischalparajuli9853 3 ай бұрын
Great
@gamal39800
@gamal39800 3 ай бұрын
thank you
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
Here is my solution: <div class="trap"> <div class="square"></div> </div> <style> *{ margin:0; padding:0; box-sizing: border-box; } body { display: flex; flex-direction: column; align-items: center; background: #C31C1D } .trap { width: 240px; height: 160px; transform: translate(0px,70px); clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%); background: #660301 } .square { width: 40px; height: 40px; background: #C31C1D; transform: translate( 60px, 120px); box-shadow: 40px 0 #C31C1D, 80px 0 #C31C1D, 40px -40px #C31C1D; } </style> <!-- IMPORTANT: remove the comments before submitting -->
@jurajrojko7851
@jurajrojko7851 3 ай бұрын
Guys, is your goal to find the most complicated solution?
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
Of course@@jurajrojko7851
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
Please explain what is troubling you@@jurajrojko7851
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
This is my solution, box-shadow and conic-gradient to the rescue: <div class="box box1"></div> <div class="box box2"> <div class="littlebox"></div> </div> <style> *{ margin:0; padding:0; box-sizing: border-box; } body { display: flex; flex-direction: column; align-items: center; background: #EAEB8D } .box { position: relative; width: 100px; height: 100px; } .littlebox { position: absolute; top: 10px; left: 10px; width: 30px; height: 30px; background: #EAEB8D; box-shadow: -50px 150px #EAEB8D; } .box1 { background-image: conic-gradient(#F48B26 0deg, #F48B26 90deg, #FECE22 90deg, #FECE22 180deg, #F48B26 180deg, #F48B26 270deg, #F9B125 270deg); transform: translate( -50px , 150px); } .box2{ background-image: conic-gradient(#F9B125 0deg, #F9B125 90deg, #F48B26 90deg, #F48B26 180deg, #F9B125 180deg, #F9B125 270deg, #FECE22 270deg); transform: translate( 50px , -50px) } </style>
@petrescuflorin3916
@petrescuflorin3916 3 ай бұрын
Another indian making futile videos and wasting people time!
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
My solution: <div class="panel leftpanel"></div> <div class="panel rightpanel"></div> <div class="toptriangle"></div> <div class="bottomtriangle"></div> <style> *{ margin:0; padding:0; box-sizing: border-box; } body { display: flex; flex-direction: column; align-items: center; background: #7E2926 } .panel { width: 75px; height: 300px; } .leftpanel { background: #D2934B; transform: translateX(-38px) } .rightpanel{ background: #DEB365; transform: translate(37px, -300px) } .toptriangle { width: 0px; height: 0px; border-style: solid; border-width: 100px 75px 0 75px; border-color: #FEFF92 transparent transparent transparent; transform: translate(0px, -600px) } .bottomtriangle { width: 0px; height: 0px; border-style: solid; border-width: 0 75px 100px 75px; border-color: transparent transparent #FEFF92 transparent; transform: translate(0px, -500px); } </style>
@vigowebs
@vigowebs 3 ай бұрын
Nice solution. Also, instead of adding .bottomtriangle properties, we can add the "box reflect" property in toptriangle, width and height not required, for transparent we can use #0000, border width can remove one 75px and in selector padding is not required. See below code <div class="panel leftpanel"></div> <div class="panel rightpanel"></div> <div class="toptriangle"></div> <style> body { margin:0; display: flex; flex-direction: column; align-items: center; background: #7E2926 } .panel { width: 75px; height: 300px; } .leftpanel { background: #D2934B; transform: translateX(-38px) } .rightpanel{ background: #DEB365; transform: translate(37px, -300px) } .toptriangle { border: solid; border-width: 100px 75px 0; border-color: #FEFF92 #0000 #0000; transform: translate(0px, -600px); -webkit-box-reflect:below 100px } </style>
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
Yes, that would, be a very good idea and save several lines of code. Well spotted@@vigowebs
@user-ir3cw9on7m
@user-ir3cw9on7m 3 ай бұрын
This was relatively easy. This is my solution: <div class="upper"></div> <div class="lower"></div> <style> *{ margin:0; padding:0; box-sizing: border-box; } body { display: flex; flex-direction: column; align-items: center; background: #6592CF } .upper { position: relative; width: 200px; height: 250px; border-width: 0px 40px 40px 40px; border-color: #243D83; border-style: solid; border-radius: 0px 0px 100px 100px; background: #6592CF; } .lower { position: relative; width: 40px; height: 170px; border-radius: 40px; background: #243D83; transform: translateY(-100px); } </style>
@_xrxietx_8749
@_xrxietx_8749 3 ай бұрын
Thank you bro. 🗿👍🏻
@feddyseven
@feddyseven 3 ай бұрын
My solution: <div></div> <div class= "rev"></div> <style> *{ margin:0; padding:0; box-sizing: border-box; } :root{ --circ: 620px; } body { background: #611B1A; display: flex; flex-direction: column; align-items: center; } div { width: var(--circ); height: var(--circ); border: solid #F16B4A 40px; border-radius: 48.3% 48.4% 0 0 ; translate: -33.9% -0px; } .rev { translate: 33.8% -100%; } </style>
@Rahi_ebooks
@Rahi_ebooks 3 ай бұрын
Code
@vigowebs
@vigowebs 3 ай бұрын
Get it from here gist.github.com/Vigowebs/cf89ba263385a3524ab0ba8ff1df5770
@tejap463
@tejap463 3 ай бұрын
dont use diff when you are writing code, we cant see whats hapening
@soumelee5661
@soumelee5661 3 ай бұрын
wow
@Mani47e
@Mani47e 3 ай бұрын
hey can you recommend any yt channel to learn javascript I already learnt HTML,CSS and I know basics in C language ,it will be helpful thank you
@andreespinoza5902
@andreespinoza5902 4 ай бұрын
que le costaba porner el codigo al csm
@tejap463
@tejap463 4 ай бұрын
Nice videos man. I started doing the CSS battles after watching your videos. I really like your solution. Thanks for sharing it
@omarehab2041
@omarehab2041 4 ай бұрын
You're amazing💗💗💝💝
@anandbaraik5010
@anandbaraik5010 4 ай бұрын
Amazing stuff man. Don't know how YT algorithm suggested me. You are so underrated man.
@omarehab2041
@omarehab2041 4 ай бұрын
Your explanation is amazing💗💗💗
@tejap463
@tejap463 4 ай бұрын
nice video
@vigowebs
@vigowebs 4 ай бұрын
Thanks
@dwanascie228
@dwanascie228 4 ай бұрын
Hey, how can i add a link to bootstrap icons?
@vigowebs
@vigowebs 4 ай бұрын
Add the link above the SVG, like this <a href="link-path" target="_blank"> Bootstrap icon SVG </a>
@dwanascie228
@dwanascie228 4 ай бұрын
@@vigowebs Thanks!
@TafsiirTV
@TafsiirTV 4 ай бұрын
thanks you helped a lot
@vigowebs
@vigowebs 4 ай бұрын
You're welcome!
@MaheshSingh-rh1rt
@MaheshSingh-rh1rt 4 ай бұрын
nevermind codefy teaches the way i would under stand you do your own
@MaheshSingh-rh1rt
@MaheshSingh-rh1rt 4 ай бұрын
try to use divs and more css please it will help us
@MaheshSingh-rh1rt
@MaheshSingh-rh1rt 4 ай бұрын
bro i suggest you to use a easy method (easy code) and then use your way to get high score, im trying to learn not to compete.
@vigowebs
@vigowebs 4 ай бұрын
Thanks for feedback. I will do that
@Thedominant-rh7vu
@Thedominant-rh7vu 5 ай бұрын
أسلوبك رائع في الحل والشرح و لكن رجاءا لا تضع الموسيقى في نهاية الفيديو ❤❤❤❤🙂🙂
@vigowebs
@vigowebs 5 ай бұрын
Ok
@alxzzz1940
@alxzzz1940 5 ай бұрын
how did u manage to find the polygon values?
@vigowebs
@vigowebs 5 ай бұрын
I am using "unused-css.com/tools/clip-path-generator" to generate the clip path values.
@ShaikSadiq-zs6yj
@ShaikSadiq-zs6yj 5 ай бұрын
I'm copy your code but body tag is not working in css battle what's that problem tell me.
@vigowebs
@vigowebs 5 ай бұрын
Can you share your code?
@Target_your_own_Business
@Target_your_own_Business 5 ай бұрын
<style>*{ background:#223E1F; } body { background:linear-gradient(#0A9947 80%,#FEFF27 0); margin:75px; border-radius:10px; }@@vigowebs it is only .i write but body color didn't show the editor and only background color showing
@vigowebs
@vigowebs 5 ай бұрын
Above code is working for me. Can you please use CSS battle in Google Chrome browser. If issue still exists contact CSS battle team through discord community
@ShaikSadiq-zs6yj
@ShaikSadiq-zs6yj 5 ай бұрын
@@vigowebs Thank you for your assistance, @vigowebs.
@MaheshSingh-rh1rt
@MaheshSingh-rh1rt 5 ай бұрын
new challange video when? im waiting broo
@MaheshSingh-rh1rt
@MaheshSingh-rh1rt 5 ай бұрын
thank you brother from different mother
@shinauri1
@shinauri1 5 ай бұрын
Please Explain margin: 90+120;? and what the syntax is <p a> ?
@vigowebs
@vigowebs 5 ай бұрын
In CSS, we use "margin: 90px 120px;" for margin top & bottom and left & right values. In CSS battle, to reduce the character count we remove the space, semicolon and px. Here +120 denotes the positive value, if it is negative value, it will be 90-120. <p a> - In CSS, we use <p class="a">, in CSS battle, we use <p a>, here "a" denotes the attribute so we use p[a] or [a]{background:#000}
@shinauri1
@shinauri1 5 ай бұрын
@@vigowebs Thank you!