Coder Coder challenged me to CSSBattle

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ • 581

  • @TheCoderCoder
    @TheCoderCoder 4 роки тому +1336

    Thanks so much for doing this collab! It was a ton of fun and I think made for an interesting video for others! 😁

    • @raphaelcardosos
      @raphaelcardosos 4 роки тому +7

      Jessica, I realized that I thought of solutions that are the same / similar to yours... I think I watch a lot of your videos 😝💗

    • @ZaidIrfanKhan
      @ZaidIrfanKhan 4 роки тому

      Wow, you were extraordinary.

    • @pbateman6775
      @pbateman6775 4 роки тому

      Your approach was very enjoyable to view.
      I am relearning to code and would love to be as fluent coming up with minimal solutions like you do👌

    • @sumitsave8799
      @sumitsave8799 4 роки тому +2

      Can we use background-clip property 😉

    • @tyrellwreleck4226
      @tyrellwreleck4226 4 роки тому +2

      round 1, why are you using position:absolute ? its not stable when the viewport changes. Anyone's with me?

  • @halberliterpils
    @halberliterpils 3 роки тому +604

    "I think this should work." Most common phrase used while writing css.

    • @cipherxen2
      @cipherxen2 3 роки тому +26

      Or while writing any program.

    • @josephmbimbi
      @josephmbimbi 3 роки тому +1

      @@cipherxen2 until you do tdd

    • @cipherxen2
      @cipherxen2 3 роки тому

      @@josephmbimbi it applies in TDD too!

    • @josephmbimbi
      @josephmbimbi 3 роки тому

      @@cipherxen2 to some extent yeah. I meant, you have more than an eyeball test and don't just push your code finger crossed ^^

    • @cipherxen2
      @cipherxen2 3 роки тому

      @@josephmbimbi so, what's your point then?

  • @severussin
    @severussin 4 роки тому +256

    this is beautiful to see the difference in thought process and code structure. love it. more like this pls.

  • @nobytes2
    @nobytes2 4 роки тому +406

    William: I haven't done proper css in two years, proceeds to crush every challenge with css sorcery.

    • @artmosphereID
      @artmosphereID 3 роки тому +5

      yea react native style sheet mostly like vanilla CSS in general

  • @AshutoshMishra
    @AshutoshMishra 4 роки тому +420

    It is always a better practice to give border-radius:50%

    • @Joksky8
      @Joksky8 4 роки тому +9

      Ofcourse it can try this -> borderRadius: '50%'

    • @thesodapoppanda8778
      @thesodapoppanda8778 3 роки тому +9

      @@Joksky8 I can confirm this doesn't work in my version of react-native either using px is the only way.

    • @alexsivro9110
      @alexsivro9110 3 роки тому +2

      @@thesodapoppanda8778 Dang react sucks lol

    • @samuelkundael3503
      @samuelkundael3503 3 роки тому +2

      lol, border like shapes should be the basic of css, almost like kindergarten.

  • @i.t.starters2019
    @i.t.starters2019 3 роки тому +10

    I love this especially to see you guys struggling a little bit like I always do. I think you boosted my confidence.

  • @JohanLindskogen
    @JohanLindskogen 4 роки тому +69

    Really fun to watch you guys solve the problems in your own way! I missed having some kind of follow up at the end where you went through each others’ solutions or maybe just commented quickly on each others’ performance.

    • @jpisello
      @jpisello 4 роки тому +13

      I was hoping for that too. At least a comparison of their scores.

    • @SMMGOGO
      @SMMGOGO 3 роки тому +3

      @@jpisello i think he actually kicked her ass so badly that it was embarrasing to show the final score were a non familiar css code dude beats the hell up of a css youtube guru.

  • @fatihcandev
    @fatihcandev 4 роки тому +72

    Fun to watch! I didn't know about this website. I'll certainly dive in.

  • @dukeeehhh2386
    @dukeeehhh2386 3 роки тому +85

    I actually googled the last round, how to deal with the color at the circle's intersection, and I think it would have actually worked with propperty "mix-blend-mode: #(color-hex);". I was quite surprised it can be done wtih only one line of code :D

    • @yassirmadad9329
      @yassirmadad9329 3 роки тому +11

      i did it by using circles one in the other
      with the overflow:hidden and z-index:1

    • @zinedinhadzajlija6225
      @zinedinhadzajlija6225 3 роки тому +4

      Css really is sometimes like that. One line of code can do wonders

    • @velara314
      @velara314 3 роки тому +3

      could maybe have done it with blend mode: difference or exclusion

  • @DMoots
    @DMoots 4 роки тому +13

    There's an easy way to do the last challenge. It's just an illusion of having a centre section.
    1. Make three circle divs all the same size, one peach, one red and one the same colour as the background.
    2. Position the peach and red circles normally so they overlap.
    3. Position the background coloured circle inside one of the other circles with overflow hidden and position it so it appears like it's just "peeking" into the other circle.

    • @rajeevranjansrivastava2473
      @rajeevranjansrivastava2473 2 роки тому +1

      I have use almost same approach and within 5 min I have finish the last challenge with 100% and used 565 characters. 🙂

    • @ParrhesiaJoe
      @ParrhesiaJoe Рік тому

      body{
      margin: 0;
      background: #09042A;
      }
      .circle {
      position: absolute;
      border-radius: 50%;
      aspect-ratio: 1;
      width: 150;
      }
      .c1 {
      background: #7B3F61;
      top: 75;
      left: 75;
      overflow: clip;
      }
      .c2 {
      background: #E78481;
      top: 75;
      left: 175
      }
      .slice {
      background: #09042A;
      left: 100
      }

  • @JamesQQuick
    @JamesQQuick 4 роки тому +3

    One of the coolest developer videos I've ever seen!!

  • @waleG_
    @waleG_ 4 роки тому +41

    For a quick second, I wondered what Sean Evans knows about CSS and why he was being challenged.

  • @sandinosaso
    @sandinosaso 3 роки тому +3

    The clip-path trick makes my day :). It is great to see how 2 people resolve the same problem, it is amazing how different ways of thinking can both solve the same problem. I think in the first round you both did similar, in the second round I liked more Jessica approach, in the last round I liked more William, so that is a Tie for me !!! hahahah. You must another video to define the winner :)

  • @nitram_nosnibor
    @nitram_nosnibor 3 роки тому +2

    Wow that last one was hard!!! I'm going to look into "clip-path" much more now. I love watching these as I have discovered you William, nice one and I have subscribed now - cheers

  • @thydevdom
    @thydevdom 4 роки тому +21

    William took an interesting approach. Mine was almost exactly as Jessica’s. Great job guys!

  • @B42536
    @B42536 4 роки тому

    The last one: two divs, with ::after or ::before pseudo code is possible. When you give overflow:hidden to divs and create same width, height, border-radius property based two circles and their pseudo as well.

  • @Robdbank
    @Robdbank 4 роки тому +17

    We never got to see the final scores. I'd like to see more of this collabo in the future

    • @mishuhishu94
      @mishuhishu94 4 роки тому +1

      yeah! he got 600 but how much did she get?! who won?

  • @kevinkkirimii
    @kevinkkirimii 4 роки тому +2

    I am not a web developer but I really appreciate how each of you had different thought processes and showing the power CSS.

  • @frontendgrowth4572
    @frontendgrowth4572 3 роки тому +2

    Really fun to watch this battle. It is interesting to see how people think differently and solve the same problems differently.

  • @AjaySingh-xd4nz
    @AjaySingh-xd4nz 3 роки тому +3

    css indeed demands not just your knowledge but creativity too! well done both of you!

  • @imaginadan7334
    @imaginadan7334 3 роки тому +1

    Can someone tell how do they call a color so accurate since we have thousand of possibilities. Im messing up a lot in color and have to google it everytime I want to pick one

    • @wcandillon
      @wcandillon  3 роки тому

      we can copy/paste them sorry it was visible on screen.

  • @math-s
    @math-s 4 роки тому +137

    I'm a C programmer and my mind can't get this, sorry haha

    • @varri0nschannel840
      @varri0nschannel840 4 роки тому +32

      me too , It kind of hurts to see people playing with shapes and calling it programming while we suffer in pitch darkness....

    • @LilMartyFarty
      @LilMartyFarty 4 роки тому +40

      @@varri0nschannel840 Well, CSS is not a programming language (nor is HTML) so it shouldn't be considered "programming". I guess you can consider it a part of programming, but in itself I wouldn't be able to say so.

    • @LuZ-vg6fy
      @LuZ-vg6fy 4 роки тому +2

      Same with Javascript, lord saved me from doing CSS.

    • @elwinjyothis5388
      @elwinjyothis5388 4 роки тому +6

      @@varri0nschannel840 CSS is not a programming language and calling css programming would be pretty stupid cause the name itself says that it is a cascade style sheet

    • @badrkarrachai1189
      @badrkarrachai1189 3 роки тому

      the same here 😢

  • @seancpp
    @seancpp 4 роки тому +1

    The production value in these videos is top notch. Really good work.

  • @DevelopingDadCodes
    @DevelopingDadCodes 4 роки тому +9

    This was an awesome challenge!! I love to watch how other developers figure out problems.

  • @stevensbrito7188
    @stevensbrito7188 4 роки тому +8

    That was really fun, I liked it. The latest exercise could be easier creating a class to create 3 div circles at once, and use one of them into a relative space of the pink circle (child) to create that middle space between the others two. And of course, the pink circle will have an overflow: hidden property to move the third (dark blue) to the left inside of it. :D

    • @resvevo
      @resvevo 3 роки тому

      Exactly my thought. Just clone one circle, add a child circle with the background color and move it to the side while clipping the parent circle.

  • @goldengiorno6890
    @goldengiorno6890 4 роки тому +104

    the next one MUST be The Net Ninja, the lord of web development

  • @fomentarelaxation139
    @fomentarelaxation139 3 роки тому +3

    Wow, thanks for these CSSbattles, now as a total beginner I understand that there is no one way how make website. Everyone is a unique writer for its own website 👌 Thanks 🙏

  • @zakariachahboun
    @zakariachahboun 4 роки тому +14

    i really learned a lot from this battle! Thanks!

  • @k-yo
    @k-yo 4 роки тому +1

    The trick for staying top 10 in these challenges are usually using lots of gradient backgrounds, box-shadows, styling the default available html and body elements (usually with * and * * selectors), all while minifying the code and exploiting some code omissions that still renders the CSS/HTML in a valid way. I've managed to get some very few top 10 spots, but damn the top 3 is hard af. Also, always the same wizards in those positions in all challenges. I remember that there is one person that is consistently on the top that is actually a maintainer of SVGO, so I guess that's where his magic comes from lol. For anyone interested, check the tips section on the site, it's super cool cssbattle.dev/tips/

  • @brainz80
    @brainz80 4 роки тому +1

    My first thought on the final was to use filter. Maybe I'll have to test it out

    • @brainz80
      @brainz80 4 роки тому +1

      Ok. filter doesn't have what I was looking for. But mix-blend-mode might.

  • @theg315
    @theg315 3 роки тому

    if you are lazy like me. when making circle divs, I just make the width and height to 1em and make the border-radius to .5em or 50% ( whichever makes you feel good ) and then you make the font size to whatever the size of the circle you want it to be. so you don’t have have to keep on changing the width and height everytime you have to adjust the circle’s size 😁

  • @SeanGoresht
    @SeanGoresht 3 роки тому

    10:00 my first thought on this was to use the ❄ emoji behind the circle, but alas, it doesn't map 1:1. Neither does ❊ (too many lines). Could css clip and shape be used to mask away the additional striations 🤔? I wonder

  • @KingDrekon
    @KingDrekon 3 роки тому +1

    Use instead of a div to reduce the code's character count.

  • @Incomestreamsurfers
    @Incomestreamsurfers 4 роки тому

    What music is this please?

  • @qwertzuiopqwertzuiop2107
    @qwertzuiopqwertzuiop2107 4 роки тому +201

    shes a genius at css, but when she rotated the red mountain she did it by trial and error😂

    • @resonatingsilence
      @resonatingsilence 4 роки тому +20

      Anyone can see that is 45 degrees. Why would you even try 10?? She can’t eyeball pixel values at all either.

    • @brendan9039
      @brendan9039 3 роки тому +11

      She probably still kick your ass at css 😆

    • @resonatingsilence
      @resonatingsilence 3 роки тому +34

      @@brendan9039 who cares? That's like kicking my ass at putting stamps on mail.

    • @randomguy3000
      @randomguy3000 3 роки тому +11

      @@resonatingsilence savage comeback

    • @LegendOfTheRee
      @LegendOfTheRee 3 роки тому

      I went to the comment section for this exact reason.

  • @peter9style
    @peter9style 3 роки тому

    And there i was feeling proud for copy/pasting css to change the sidebar font size... 😅

  • @romulofg
    @romulofg 4 роки тому +1

    Audio missing in challenge 3 for willian

  • @ravense8337
    @ravense8337 4 роки тому +3

    Great video, hope you do these battles more in the future!

  • @awekeningbro1207
    @awekeningbro1207 4 роки тому +2

    here is my short way of doing the last challenge(venn-diagramm):
    body {
    --color1: rgb(21, 70, 110);
    display: flex;
    justify-content: center;
    height: 100vh;
    background: var(--color1);
    margin: 0;
    place-items: center;
    }
    div {
    --radius: 140px;
    height: var(--radius);
    width: var(--radius);
    background-color: var(--color1);
    box-shadow: calc(var(--radius) * -.50) 0 0 0 black,
    calc(var(--radius) * -.50) 0 0 0 black inset;
    border-radius: 50%;
    transform: translateX(calc(var(--radius) * .25));
    }

  • @savieecodes
    @savieecodes 3 роки тому +1

    This is an excellent competition, we saw different approaches from both of them, which is really cool.

  • @flobiish
    @flobiish 3 роки тому

    Very fun to watch. You guys had a harder time with these than I did, but that doesn't mean I didn't learn anything watching. With the last one, you could have used the top of the two overlapping circles as the clipping box for the inner portion.

  • @parakidd
    @parakidd 3 роки тому +2

    I’ve been struggling to learn web development for a few years now because I would rather be on an interactive environment versus just watching tutorials on the web that I tend to fall asleep to. This was much more entertaining and engaging as well as an awesome display of friendly competition that shows CSS in action as its being written with real time results. Definitely going to be watching more videos!

    • @johndorian4078
      @johndorian4078 2 роки тому

      so how's the web development going? or you find a new excuse?

    • @parakidd
      @parakidd 2 роки тому

      @@johndorian4078 I change gears too often and end up looking into other things. Always been a problem with me. Are you still a dick?

  • @_lost._.zeny_
    @_lost._.zeny_ 2 роки тому +1

    can anyone tell me the song playing in the background at 05:14?????

    • @_lost._.zeny_
      @_lost._.zeny_ 2 роки тому +1

      found it. "Run it Up" by Nbhd Nick

  • @ugurugutugu
    @ugurugutugu 2 роки тому

    Task: you have to recreate image exactly right with least amount of code.
    Both proceed to make it close but not same and doesn't care how much code they've used...

  • @becayebalde3820
    @becayebalde3820 3 роки тому +1

    This video was so interesting
    I even did the first challenge and it was so fun
    Please make more content like this!

  • @scriptkeeper8243
    @scriptkeeper8243 4 роки тому +21

    CSS: that moment when you try hanging a painting on the wall and you nail your hand up instead.

    • @buenvia
      @buenvia 3 роки тому +1

      CSS: When you try to hang up the painting, but instead you set fire to the sofa.

    • @AntiAtheismIsUnstoppable
      @AntiAtheismIsUnstoppable 3 роки тому

      That's the danger of using negative margins. Use translate instead

  • @wajidkhan2980
    @wajidkhan2980 4 роки тому +6

    i guess i am to noob to understand what is happening saving this to my playlist and once have enough experience i will what watch it again. peace

  • @rukhsarkhan4506
    @rukhsarkhan4506 2 роки тому

    Third stage was quite easy make 3rd circle at same position as left one same size background color black then give z index to all three.. left ine would be first to shown then center then right

  • @kushagragour
    @kushagragour 4 роки тому +5

    Really cool! Thank you for doing this Jessica & William!

  • @furbearmn
    @furbearmn 3 роки тому

    Wow, they both made that last Venn diagram challenge 10x harder than it needed to be! The gap is just a nested circle clipped instead the other circle with 'overflow: hidden'.



    body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #09042A;
    }
    .circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    }
    .c1 { left: 30px; background-color: #7B3F61; }
    .c2 { left: -30px; background-color: #E78481; }
    .c3 { left: -90px; background-color: #09042A; }

  • @lars-ragnarhaugen577
    @lars-ragnarhaugen577 3 роки тому

    For the last task i would have just had a 3rd equal-sized dark circle and put it inside
    of the overlapping circle div

  • @ericfox6812
    @ericfox6812 3 роки тому

    I think the last one can be done with mix-blend-mode css property

  • @charlesch3ng
    @charlesch3ng 3 роки тому +2

    Another solution for getting the lens shape from overlapping two circles 21:58 :
    Take a square, use border-bottom-left-radius and border-top-right-radius to round off the opposite corners, then rotate 45 degrees.
    This solution won't work though unless the circles are intersecting exactly the right amount, which they appear to be.

  • @-SumaiyaSiddika
    @-SumaiyaSiddika 3 роки тому +1

    Though i don't know html or css but it feels so good to watch two people thinking differently

  • @EvaLasta
    @EvaLasta 4 роки тому +1

    25:06 what are those spoopies sounds in the background?

    • @squ34ky
      @squ34ky 3 роки тому

      An airplane

  • @ankit55ful
    @ankit55ful 3 роки тому +5

    I love how William opened a new tab in round 2 “Clipping and Masking in CSS” 😂

    • @Danko_HS
      @Danko_HS 3 роки тому +1

      🤣 nice catch

  • @sahilpahuja1674
    @sahilpahuja1674 4 роки тому +3

    For challenge 3 you can make another circle inside 2nd one of same size and overflow hidden then just position it..

  • @tenc6491
    @tenc6491 2 роки тому

    Hi William, I like your french accent. glad to see a french UA-camr who creates content in English. Happily subscribed.

  • @m4rch3n1ng
    @m4rch3n1ng 3 роки тому

    why did nobody think of just using inset box-shadows for the last one?

  • @TwanvB
    @TwanvB 3 роки тому

    I would approach these designs almost the same way Jessica did. The way William did it was really interesting to me. Love these video's it really shows there are more ways to do things.

  • @study3954
    @study3954 4 роки тому +1

    But we did NOT see his first & second challenge results 😅

  • @Ealdorman_of_Mercia
    @Ealdorman_of_Mercia 2 роки тому +1

    mhmm so coding is all about trial and error, looking up the answer and understanding the principle? Seems so much more interesting than my boring field.

  • @archiem6323
    @archiem6323 4 роки тому +5

    Jessica, Jessica, I have learned a lot from you. Thanks!!

  • @TheNamesJT
    @TheNamesJT 4 роки тому +1

    They submitted without deleting the comments 🤦‍♂️ His mic muted 22:31 🤦‍♂️

    • @AKMSaifulIslamRony
      @AKMSaifulIslamRony 4 роки тому

      They did not take it seriously at all. They just thought about getting things done. It was fun.

  • @jaywye
    @jaywye 3 роки тому +1

    First two were pretty easy to figure out but that last one, I've never seen before.

  • @dfgfdgdfgfdg2902
    @dfgfdgdfgfdg2902 4 роки тому +1

    love these code battles!!! so entertaining and informative :)

  • @bubbleteaichooseyou
    @bubbleteaichooseyou 3 роки тому +1

    I always learn from coder coder but I don't know exactly why. Now after seeing her side by side with other people I fully understand her code is very clean and noobs friendly you can just look at it and have a general understanding of what she's going to do

  • @josejohnhalindogo8336
    @josejohnhalindogo8336 4 роки тому +5

    I learned something. That's all that matters. I actually learned something.

  • @eufraniodiogo50
    @eufraniodiogo50 3 роки тому +2

    I never listened a french guy speaking english it's awesome!
    New sub, liked the video

  • @jacksingermusic
    @jacksingermusic 3 роки тому

    Can someone pls tell me how she went up and down the lines of code without ever going to the end of the line? What keyboard shortcut is that?

  • @IceMetalPunk
    @IceMetalPunk 3 роки тому +1

    Fun fact: self-closing non-void tags are invalid in HTML, so all your lines are just opening divs without closing them. React habits hurt you there :P

  • @umaralfaruq1304
    @umaralfaruq1304 3 роки тому

    Hi William can you create popup menu(like dropdown menu in css) for react native?

  • @asdzxcz1360
    @asdzxcz1360 4 роки тому

    Is there a website similar to cssbattle, but more practical ?? Like fixing html/css layout, quizzes or challenges that would be more practical and would help with solving problems that may occur during real development ??

  • @faust2134
    @faust2134 3 роки тому

    I wonder, why does William use "px" for creating circles? border-radius: 50%; is a perfect solution. Maybe im missing something?

  • @madanhamuchineuta3157
    @madanhamuchineuta3157 4 роки тому +2

    I used only 3 div on challenge 3 kkk and the accuracy was 100%. should i open a youtube channel for css kkk :)

    • @rafamilenium2
      @rafamilenium2 4 роки тому

      Go for it. Post the link here so we can learn from you too.

  • @himayou_n
    @himayou_n 4 роки тому

    Voice Error at 22:30

  • @tarikkhatry1811
    @tarikkhatry1811 4 роки тому

    2:16............ If anyone wondering how to center things in CSS fastest way...
    try,
    div {
    display : grid ;
    Place - items : center ;
    }

  • @shamshadazam1530
    @shamshadazam1530 4 роки тому +1

    Which Vs code color theme u use please name

  • @PTJ_S
    @PTJ_S 3 роки тому

    Song at 9:27?

  • @Neffri
    @Neffri 3 роки тому

    I've watched a few CSS battle videos now and I can't figure out why people don't do nesting? Maybe it dosnt work? But in the first challange for example there are 4 circles that all could have radius 50% and there are 3 sticks that look identical besides their rotation. Or am I'm missing something here?

  • @worldonevlog
    @worldonevlog 3 роки тому

    why did she insert two names in the class when creating the dot

  • @chrismanning5232
    @chrismanning5232 3 роки тому

    You guys crazy overcomplicated the last problem. You make a clone of the left circle as a child of the right with the background color, then have the right circle with overflow hidden.

  • @rafilalars6347
    @rafilalars6347 4 роки тому

    Hi William could you please create a video which show us how to Built React Native App with Reanimated 2 for the Web and figure out the performance impact when the app works on the web with reanimated 2.

  • @copycarvers
    @copycarvers 3 роки тому

    Such a freaking creative and productive way to improve your skills

  • @rein7840
    @rein7840 4 роки тому

    Hey, William. You have a example of this sections with indicator bar of UA-cam? Like in your profile (home, videos, community, etc). Have a indicator bar that change with and translate to new indexes on click or swipe. I have no Idea how to start that, if anyone know a way. Thx for the attention :D

  • @ZardashtKaya
    @ZardashtKaya 3 роки тому

    note to self: never use grid to center things, because its not pixel perfect

  • @marufmarzuq
    @marufmarzuq 3 роки тому

    Now I've come to know how to use clip-path in CSS. Thanks William ❤️❤️

  • @lisbey759
    @lisbey759 3 роки тому

    this is how I solve the lastone .. the colors and dimentions are not the same but ...



    -------------------------------------
    html{
    height: 100%;
    }
    body{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    }
    .container{
    width: 400px;
    height: 400px;
    position: relative;
    }
    .circle-intersect {
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    z-index: 2;
    }
    .circle-intersect::after {
    content: '';
    background-color: black;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    left: 80%;
    }
    .circle {
    background-color: yellow;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    }
    .circle::after {
    content: '';
    background-color: red;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    left: 80%;
    }

  • @plor1261
    @plor1261 3 роки тому

    This was awesome! Please do more.

  • @tranquang2330
    @tranquang2330 4 роки тому +2

    How they know the background color immediately, did they really remember all the color codes?

    • @xamantiwari
      @xamantiwari 4 роки тому

      they have option dude

    • @phellaty
      @phellaty 4 роки тому +1

      There is options of colors, but their cam is in front of it

  • @RaterisimoCBA
    @RaterisimoCBA 3 роки тому

    I liked the King of Fighters "Round ... Ready ... Go !". I'm guessing that was KOF 97 or 96. hehe

  • @Erghan_K
    @Erghan_K 4 роки тому

    Best technique, just body and Three div for three circle. The third (same place as the first) in the second with hidden overflow.

  • @fabianvallejos
    @fabianvallejos 4 роки тому

    Great video guys! Looks like a lot of fun. I didn't know about this website but I think I'm gonna spend some time digging into it.

  • @Ninja-cn6kj
    @Ninja-cn6kj 4 роки тому +1

    I like jessica's solution very simple and sweet jhon's solution is lil bit advance that motivate to do more hardwork

  • @sharhanalhassan7352
    @sharhanalhassan7352 4 роки тому

    Why does William close some of his divs with just only /> and not

  • @simonfarrugia26
    @simonfarrugia26 4 роки тому +19

    You both definitely over complicated the last one 😅. You only had to put another same size circle inside one of the circles (with overflow hidden) and position it.

    • @kinstar
      @kinstar 4 роки тому

      That's excactly what I thought, but it's really interesting seeing how different it could be done with same outcome

    • @harshitaa7167
      @harshitaa7167 4 роки тому

      how?can u pls elaborate?

    • @kinstar
      @kinstar 4 роки тому +2

      @@harshitaa7167 you see the second challenge they did where they used square boxes inside the circle to make the mountains, its excactly the same thing just with another circle.

    • @harshitaa7167
      @harshitaa7167 4 роки тому

      @@kinstar but how? won't the circles completely overlap each other?

    • @kinstar
      @kinstar 4 роки тому +1

      @@harshitaa7167 they will but that's why you position the other circle to the right then hide the over flow

  • @sugiii9616
    @sugiii9616 3 роки тому

    J'aurai adoré avoir votre debrief des épreuves et que vous partagiez les méthodes que vous avez employé. Pesant pourquoi pas les pours les les contres en débouchant sur une option "plus viable selon vous"

  • @giorgimerabishvili8194
    @giorgimerabishvili8194 3 роки тому +7

    I've not heard Skype sound for a looong time : ))))

  • @preciousnwaoha3123
    @preciousnwaoha3123 4 роки тому +1

    Pls Part 2🙏👍👍🙏 Awesome vid

  • @ZardashtKaya
    @ZardashtKaya 3 роки тому

    am i the only when when watching the css challenges i see that its clearly not centered but they’re like damn that’s perfect, am i the only one seeing that its not???