Chrome DevTools Crash Course - using Chrome 'Inspector' for CSS Development

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 29

  • @franceskarouzard3957
    @franceskarouzard3957 2 роки тому +5

    Reverse engineering would be a dope tutorial!

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

    Hey Matt, thanks for doing this crash course video. I've been messing around with Chrome Dev Tools whenever I can't fix something through Elementor's widgets, for example. This gives me a better idea on how to go about it, as well as checking out what's behind some other designs from other websites. Cheers and would love to see more on this subject.

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

    Also, seeing other website's CSS and mimicking their design sounds interesting. Please do a tutorial on that as well when you get time.

  • @marvintolentino4360
    @marvintolentino4360 Рік тому +1

    You nailed it man! Such a useful and relevant content. Bunch of thanks! Just liked and subscribed.

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

    Thanks. Almost everyone has access to this tool, but almost no one knows how it works. 😅 So thanks for this quick crash course, and that person who suggested it.

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

    Hi Matt! Really great video. Want a crash course on DevTool for CSS. Better if you can cover that by 30 minutes. Wish you all the best. :)

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

    you are best, please uplode more videos

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

    Great vídeo as always :D
    I would love to watch the vídeo of reverse css from another website
    Thnx

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

    This was very helpful. Thanks for making this video :)

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

      You're welcome. Please let me know if you have suggestions for future videos that would help you on your journey.

  • @NickBrown79
    @NickBrown79 7 місяців тому

    This was super helpful!! Thanks!

  • @user-sg9it7lt4w
    @user-sg9it7lt4w Рік тому

    That is gonna save my tons of time. Thanks Bro.

  • @ajwebhub
    @ajwebhub 10 місяців тому

    Hello Matt,
    It was helpful. thanks for this video.

  • @astrarai-thesobercoder
    @astrarai-thesobercoder Рік тому

    Very helpful. Thank you.

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

    Thank you.

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

    Thank you

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

    Hi Matt! Great tutorial and exactly what I was looking for! Many thanks. Here is another proposal: I am using Wordpress with the GeneratPress Pro theme. If I want to do some additional CSS inside wordpress, I have tremendous problems identifiying the right classes in the inspector which I have to address. Also I find it difficult to understand when to use .classA.classB.classC versus .classA .classB .classC. So if this would be worth another video, that would really be great. Once Again: Many thanks for your video(s). Klaus

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

      I thought about adding some CSS selector basics to this video but decided it'd be better off in its own video.
      Choosing which class names to target is part art and part science. It gets easier with practice but probably hard to explain here.
      As to your other question, it's a quick answer:
      if you're targeting multiple selectors for the same element, don't put a space between them. If the selectors have a parent > child relationship then put a space.
      Example:
      Some text
      you'd would join them -- h4.big.tall (or just h4.tall, .big.tall etc)
      Some Text
      Because the h4 is the child element of the div, you'd put a space:
      .red h4 (or)
      .red .blue
      And of course you can combine both principles, so:
      div.red h4.blue (note the space between the nested elements)
      I hope that makes sense.

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

    Brother! Please make tutorial on how to display popular posts based on view count using query loop.

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

      It depends what you mean by 'popular posts'. If you want to order by something like 'view count' you'd need an 3rd-party plugin to track that data. WordPress doesn't track it by default. Then you could access that custom field value in your query loop.

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

      @@BuildThatWebsite Which plugin would recommend for this. Like order by view count and Thank for you Response ♥

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

      This one seems like a good option:
      wordpress.org/plugins/post-views-counter/

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

    Please make a video about the Network tab in devtools

  • @georgistanislavov6980
    @georgistanislavov6980 4 місяці тому

    can someone pls tell me what is the blue thing in the padding i need to chainge it but i dont know its name

  • @mr.unknown5476
    @mr.unknown5476 Рік тому

    Bro i need to know how to view website code of any website?...having troubling get save all resources to work? please Help

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

    One more thing. I saw a tablepress table design that I think I can't re-create. So is there a way I can make the exact design copying their CSS? 😅 I can't share the URL as UA-cam blocks my comments if I do.

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

      The easiest way to find all the styles is to use the inspector. Find a css property you know is custom and view the rule in the style tab.
      In the top right corner of the style rule, click the name of the stylesheet which contains the rule. It'll take you to that exact position in the CSS file where you'll usually see all the styles for that table in one place.
      If the CSS file is minified, look for the little 'curly brackets' button. { }
      Click that to un-minify the file and copy the styles.

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

      @@BuildThatWebsite Thanks, I'll try this. ✅

  • @Techbizhustle
    @Techbizhustle 9 місяців тому

    Thank you