Top 10 CSS Features You Should Know & Use in 2023

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

КОМЕНТАРІ • 332

  • @lukas.webdev
    @lukas.webdev  Рік тому +30

    Which of those features are your favorites, which did you already knew or which one’s are definitely missing here? 🧐
    I would love to get your take on this ranking! 😉🔥

    • @mdibrahimkhalil2847
      @mdibrahimkhalil2847 Рік тому +5

      Thank you for helping me

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      @@mdibrahimkhalil2847 My pleasure, buddy! 😉

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

      😊😢😂😅😢😂❤😊😅

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

      Is()

    • @lukas.webdev
      @lukas.webdev  Рік тому +3

      @@mikelexx2542 You're right. That's also a very important CSS Trick - thanks for mentioning! 😉

  • @dmitrynesterov8148
    @dmitrynesterov8148 Рік тому +18

    You’re teaching at the exactly the pace that is needed to understand and memorise . Works really well for me

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

      Yeah it is a bit easier to follow than Kevin, though I think Kevin shows a lot more passion for CSS and teaching it.

  • @himanilsharma2147
    @himanilsharma2147 Рік тому +10

    Speed, pace, way of telling, simplicity and easy to understand - if those were the categories to rate this video then I will rate 100 out of 10...!
    You just lighten up the areas where I was afraid of going due to darkness... Thanks 🙏

    • @lukas.webdev
      @lukas.webdev  Рік тому +2

      Thank you so much for your feedback, this really means the world to me! 🤩
      I'm glad you like it and I really appreciate your feedback! 😉

  • @Av-fn5wx
    @Av-fn5wx Рік тому +8

    Found these extremely useful:
    Top set vertical or horizontal spacing
    Before:
    margin: 10px 0;
    Now:
    margin-block: 10px;
    first qualifier can be replaced with padding, border as well
    To set variable width/height till a threshold value is reached
    Before:
    width: 70%;
    max-width: 500px;
    Now:
    width: min(70%, 500px)

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Yes, me too! Thanks for sharing! 😉

  • @JohnKumarBuses
    @JohnKumarBuses Рік тому +6

    Industry practice or best practice.
    1. Best practice for body copy in responsive design.
    2. Best practice for header and footer.
    3. Best practice for components like cards etc.
    a complete guide would be great. I think you have the deep knowledge. You could help millions of UI designers.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your request, John! Sounds like an interesting idea to me - I’ll think about it. 😉

  • @wg2
    @wg2 6 місяців тому +1

    i was first offended by the code monkey remark ,then i was like yeah that is what is actually happening (especially at a junior dev level) , touché lukas touché

  • @jonopens
    @jonopens Рік тому +5

    Really great video, Lukas! It would be even better if you have a better mic as the vox come through kind of echoey/tinny. Content is excellent, however - keep it up!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you, I really appreciate your feedback!
      Happy to hear that you like it. Sorry for that, but if you check out my latest videos, you'll recognize that I'm having a mic now... 😉
      (still need to figure out the best settings and stuff, but it will get better with every new video.)

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

    Oh my God, I simply didn't know the scroll-snap, I already need to use this but I didn't know how, this is amazing, every day being impressioned by the amazing features of CSS

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Yeah, CSS is awesome. 😉
      I'm glad I could help, thanks for the feedback.

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

    I totally forgot about line-clamp, thanks for reminding.

  • @zakir.nuriiev
    @zakir.nuriiev Рік тому +8

    Nice video. Thanks! Regarding the logical properties, there are also the "-start" and "-end" suffixes. Also the logic properties relative to the selected language on the page that is an awesome feature for those who care about many translations.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for sharing, Zakir. I'm glad you like the video and appreciate your feedback! 😉

    • @HenriqueErzinger
      @HenriqueErzinger 2 місяці тому

      The reading direction is the reason for those properties, there’s nothing “logical” about them. I don’t know where he got this naming from. In general you should use them instead of left, right, top and bottom always, they are straight up modern substitutes. The older ones only still exist for backwards compatibility.

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

    Thanks a lot Lukas. I have finally understood :is(), inline vs block, and how to use line-clamp. And I love your style! 👏👏👏👏👏

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you Pablo, this really means a lot to me!
      I'm happy to hear that and I appreciate your feedback! 😉

  • @oliver_twistor
    @oliver_twistor Рік тому +25

    Nice list! But I would want to caution people when using -inline and -block, for example margin-inline. The reason for that caution is that the semantics are slightly different than using margin-left and margin-right.
    If you write margin-left, the margin will always be on the left side regardless of writing mode (left-to-right, right-to-left, top-to-bottom or bottom-to-top), but with margin-inline, which is a shorthand for margin-inline-start and margin-inline-end, writing mode is taken into account, so in a right-to-left display language, the margin you intended to be on the left side will now be on the right side, which might not be what you intended.

    • @lukas.webdev
      @lukas.webdev  Рік тому +7

      I'm glad you like it! 😉
      You're absolutely right about that. Thanks for mentioning and for this great explanation!

    • @AlexanderKontsevoy
      @AlexanderKontsevoy Рік тому +5

      That’s actually makes margin-inline even more useful, you will not have to update the styles when switching from ltr to rtl languages: in most cases it requires to flip the website horizontally, and if you use margin-inline, all you have to do is just change “direction” property. But if you specify different margin values for left and right, you’ll have to override them as well.

    • @oliver_twistor
      @oliver_twistor Рік тому +10

      @@AlexanderKontsevoy I agree, and that is why these properties were added. And that's why it's important to know what your intent is. If your intent is to have a margin in the beginning of the text (regardless of text direction), you should use -inline. But if your intent is to always have the margin on the left side regardless of text direction, you should use -left. It all depends on the situation.
      So my comment was not to say that -inline isn't useful; it was to alert people to the slight difference of semantics so they won't be surprised if that thing that should always have a left margin suddenly has its margin on the right for e.g. Arabic readers. But I agree with you, if only applied to paragraphs, figures and such, -inline is very nice to not have to override everything all the time.

    • @A.D.G
      @A.D.G Рік тому +1

      I understand wanting to raise this difference, though I think it's important to make developers more aware about different writing modes/accessibility in general so they can develop and design for them without accessibility seeming like this daunting arcane task

    • @TesterAnimal1
      @TesterAnimal1 11 місяців тому +1

      What drives me crazy though is the multi valued forms don’t follow.
      margin : 1rem 2rem 3rem 4rem;
      That TRBL even in RTL mode.
      That’s a spec error.

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

    I'm new to coding and this is really helpful. I always do some things manually like the position of the context but now here I found there's and easier way to do it.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks! I'm happy to hear that and I appreciate your feedback! 😉

  • @JohnKumarBuses
    @JohnKumarBuses Рік тому +2

    I subscribed to your channel and will always support you. Your video is amazing! CSS is very advanced. I would like you to post more videos related to CSS for better designing. May be a video for best practices. Thanks.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you very much, this really means a lot to me! 🤩
      I'm happy to hear that and thanks for the video idea.

  • @Edg983
    @Edg983 9 місяців тому +2

    Starting webdev here. Learned a lot from this video. Perhaps the biggest one of all is one you showed without mentioning: box-sizing: border-box. That one is going to make my life a lot easier! Thanks!

  • @user-uv4rk1vt7x
    @user-uv4rk1vt7x Рік тому +1

    Thank you very much! 🤩
    Okay, I watched the video to the end and now I can say I love you!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure, buddy! Thank you for your feedback, this really means a lot to me. 🤩

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

    Superb video, thank for lot.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I'm glad you like it. 😉

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

    A lot of useful tricks to keep in mind, thanks!!!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I'm happy to hear that and I really appreciate your feedback! 😉

  • @Omkar-q2v
    @Omkar-q2v 10 місяців тому

    U suddenly appeared on my utube and cleared my all doubts which bother me everyday ❤️‍🔥❤️‍🔥

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

    I am thrilled. Thank you very much!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure, buddy! Thank you for your feedback. 😉

  • @k1llerfr0g58
    @k1llerfr0g58 Рік тому +2

    Bro, the stuff I used React components from libraries for in the past, you program using plain HTML & CSS. Damn!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Sure 😜. Plain HTML & CSS is actually pretty powerful ... 🔥

  • @ponrajs5396
    @ponrajs5396 Рік тому +2

    Thank you so much for this content ❤

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      You're welcome! Thanks for your feedback, I appreciate it! 😉

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

    Good stuff, bro. Very useful. I haven't been using any of those but will implement them in the future.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      I'm happy to hear that, Tomas. Thanks for the feedback, I really appreciate it! 😉

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

    One of the best CSS Videos I've seen in 2023

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you, this really means a lot to me! 🤩

  • @kamleshkumar-qk7cf
    @kamleshkumar-qk7cf Рік тому

    kindly make a course of all the properties and tags of CSS and teach us like in this video , i just love your way of learning.

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

    Great video here's my subscription !!!!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Awesome! Thank you very much, this really means a lot to me. 🤩

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

    that's nice video dude
    we'll need more of it

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your feedback, I appreciate it!
      I'm on it! 😉

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

    As many others have said: very nice video. Those section title cards, though... let them hang out for a couple of seconds! There is neither time to read them nor time to pause if you care to read them. But again, great content and keep it up!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Will do! Thanks for the tip and I'm glad you like it!! 😉

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

    Thanks 💜💜💜

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you like it and I appreciate your feedback! 😉

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

    Dang, these ...-block and ...-inline are useful! I always used padding: XX% 0; and padding: 0 XX%;
    Thank you a lot!

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      My pleasure, I'm happy to hear that! 😉

  • @evandromottaz
    @evandromottaz Рік тому +3

    Muito bom seu inglês, estava achando que era um vídeo gringo até ouvir "xau" 😂 aí fui ver o nome do canal e não tive dúvidas. Parabéns pelo conteúdo.

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Fico contente por ouvir isso. ... 😄
      Obrigado pelos comentários, Eu agradeço sua atenção! 😉

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

    nice one mate!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your feedback, it means a lot to me! 🤩

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

    thanks man, i hope one day i become as good at css as you or kevin powell, i have always hated css and focused at other things but im in a situation that i have to learn it, and since i started to get deeper and deeper at css i started to actually like it

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

    Good job Lukas, very helpful. (has and is) are my top tips.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Yeah, they're awesome! Thanks for you feedback, I'm glad to hear that. 😉

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

    Nice video... Saved for later purposes. Thanks Lukas!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure, buddy! I’m glad it's helpful and appreciate your feedback! 😉

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

    i love this video so much ,
    please keep making videos like this .
    best of luck for you my friend .

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Will do, buddy! Thank you so much for your feedback, I really appreciate it and I'm very happy to hear that. 😉

  • @psychedelic-chi
    @psychedelic-chi Рік тому +1

    awesome, thank you!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you like it and I appreciate your feedback! 😉

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

    Awesome video.. Great information

  • @Ferry192
    @Ferry192 Рік тому +3

    this was really very helpful hopefully see more css features in the future ❤❤

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you for your feedback! I'm on it - subscribe to get notified ... 😉

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

    Nice video!

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

    nice 1 sir good explanation :) next javascript thanks sir :)

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you like it and I appreciate your feedback! 😉
      That's a great idea, thanks.

  • @gersonthomas2951
    @gersonthomas2951 Місяць тому

    Thank you, how great is it.
    God bless u

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

    Very helpful video and clearly explained all the features without complicating things . Thanks!

  • @bryanestrada600
    @bryanestrada600 Рік тому +3

    Wow, aprendí mucho, en verdad muchas gracias, empezaré a implementar estos temas en mis próximos proyectos. 😊

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Gracias por tus respuestas, me alegra oír eso! 😉

  • @grantseguisa
    @grantseguisa Рік тому +2

    Never rlly realized till now that am missing out alot on easier code writing. Ive been using notepads to qrite codes 😂. Vscode seems alot easier to use

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Yes, you should definitely start to use VS Code instead of Notepad! 😂
      You can download it for free and it will make everything easier. PS:I have a video about the top 5 Extensions in VS Code - that should be also very helpful for you, make sure to check that out. 😉

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

    Thank Lukas for your great and very clear way of teaching!

  • @pareshkamaliya2493
    @pareshkamaliya2493 Рік тому +2

    Great 👍 you have earned a subscriber today ❤ please keep making tutorials ❤

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you very much. I really appreciate it! 😉
      Don't worry, I'm just getting started ...🤙

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

    Amazing !

    • @lukas.webdev
      @lukas.webdev  Рік тому

      I'm glad you like it, thanks for your feedback! 😉

  • @fotyG
    @fotyG Рік тому +4

    Useful and interesting content - thank you! 🙏

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your feedback! I appreciate it. 😀

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

    Sir thanks for this video super amazing….

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you like it and appreciate your feedback! 😉

  • @andreask.291
    @andreask.291 Рік тому +2

    This is really a helpful „Code-Monkey“ video. I was able to learn something new. Thank you so much. 😎

    • @lukas.webdev
      @lukas.webdev  Рік тому

      You're very welcome! I am happy to hear that 😉

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

    This Video is a Must Have!!! Thanks for sharing!!! I'm SUBSCRIBED!!!

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

    Thank you for sharing 🙏😊❤

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      You're welcome! I'm happy to help. 😉

  • @أَنْفَالٌ-غ2ح
    @أَنْفَالٌ-غ2ح Рік тому +1

    thank u very much that was helpful

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      My pleasure, I'm happy to hear that! 😉

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

    Very well explained !!! Thanks pal

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you like it. 😉

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

    Great video, Thanks!

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

    nice css tricks Lukas

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you buddy, I really appreciate the feedback! 😉

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

    Thnx alot bro ❤

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

    This content is great learned lot of new things.

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

    Keep Going !! that's great

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Will do! 😉
      Thank you so much for your feedback.

  • @stan_de
    @stan_de Рік тому +8

    Hey. I’m a web developer with a solid experience. And I did like this short and condensed review of new features. Thank you.
    The only thing I would ask to add to similar videos in the future Is the compatibility limitations to be aware about. That was a huge throwback for me when people already used flex box but it was not supported by “favourite” IE, so I could not use it or make a fallback extra.
    I’m asking this because of the prefixed CSS you used and it is obvious that it is not a standard yet :)
    Anyways thanks, and subscribing to be updated with your videos.

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

      Use sth like PostCss or even better a Preprocessor and dont care about browser support

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

      @@heiniger92 the main idea is about native support, because it is usually(…) de facto more performant :)

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      You're very welcome, I'm glad you like it and thanks for subscribing! 😉
      Good point, thanks for mentioning - I'll keep that in mind. 👍
      (But if I'm not mistaken, all the features of this video are already fully supported by every major browser - except for :has(), but I mentioned that in the video ...)

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

    Bundle Of Thanks Man❤

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

    Great video, keep going..

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Will do! 😉
      Thank you so much for your feedback, I really appreciate it. ✌

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

    wow realy usful 🤩
    thank you 🙏

    • @lukas.webdev
      @lukas.webdev  Рік тому

      I'm more than happy to hear that! My Pleasure, thanks for your feedback. 😉

  • @amalkrishna2194
    @amalkrishna2194 Рік тому +2

    Thanks that's helps a lot ❤

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      My pleasure! I’m happy to hear that. 😉

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

    You are very cool brother, thank you. Live long and prosper 🖖

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for the feedback buddy, I really appreciate it. 😉🖖

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

    Very helpful

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your feedback, I am happy to hear that! 😉

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

    Nicely done! Keep 'em coming!😀

  • @AyushJaiswal-md9kz
    @AyushJaiswal-md9kz Рік тому +1

    Amazing vedio can u just make one vedio in which you can give some tips and tricks which u have learnd from you experience to make site responsible.. and how with a cord or think in a way that we can make responsive with less code

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you for your feedback, I really appreciate it! 😉
      I am currently working on a video about Responsive Design with Tailwind CSS, maybe this is also helpful for you... Anyways thanks for your suggestions, I'll see what I can do. ✌

  • @MrSrdjanStojkovic
    @MrSrdjanStojkovic 5 місяців тому

    Great. I start follow you. 👍

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

    Love this type of video, subbed!

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

    Buen video Lukas, me suscribo!

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Muchas gracias te lo agradezco mucho! 🤩

  • @med-idabdellah
    @med-idabdellah Рік тому +1

    Great 🌹🔥🔥

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      Thanks, I really appreciate it! 😉

  • @bh-slys
    @bh-slys Рік тому +1

    Thanks ~ 💞

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I’m glad you enjoyed it and I appreciate your feedback. 😉

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

    12:20 there is still another way to write it.. since css goes from top to bottom you could simply override what was set before. In this example I would rather write
    p {
    padding: 12px;
    padding-left: 8px;
    padding-right: 8px;
    }
    the first line is the base rule, the others are the exceptions.

    • @harag9
      @harag9 11 місяців тому

      Why write 3 lines when one will do with just - padding: 12px 8px; ???

    • @Valnuss
      @Valnuss 11 місяців тому +1

      ​@@harag9 In this case it works but
      1) this is also mentioned in the video at 12:20
      2) what if only 1 value is off and the rest is not?
      You can put every setting in one line of code in simple terms of minification. But he showed alternative ways of doing this and I just wanted to add that there is another way (mentioned above)

  •  Рік тому +2

    Maybe you should add that it's always better to also add the non-prefixed version as well.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Great point, thanks for pointing this out! 😉

  • @knowledgetogo92
    @knowledgetogo92 11 місяців тому

    Nice Features, in CSS ist soviel möglich!

  • @x_x8491
    @x_x8491 11 місяців тому

    very informative, thx

  • @ЄвгенійБабенко
    @ЄвгенійБабенко 10 місяців тому

    Awesome. Thank you for your job

  • @advanced-developers
    @advanced-developers Рік тому +1

    Good 👍

  • @bhadawang
    @bhadawang 11 місяців тому

    Thank You, Sir

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

    Thank you so much, Sir 🙂
    I am really inspired by your video🙏❤🙏

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I am very happy to hear that, thank you for your feedback! 😉

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

    perfect dude!

  • @itzgametimevip1111
    @itzgametimevip1111 Рік тому +2

    If you want to make a animation for a div, then
    @keyframes demo (which is name of your animation) {
    from {
    Start animation
    }
    to {
    End animation
    }
    }
    And the object
    #demodiv {
    animation: seconds, animation name from keyframes, how many times the animation is gonna run;
    }

  • @ask-wj2pf
    @ask-wj2pf 8 місяців тому

    Thankyou. 👍🏿👍

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

    Bro.. Plz... Upload more videos on css...by developing any live websites

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Will do, buddy! Thanks for your feedback. 😉

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

    This is the best video

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thank you very much! I’m glad you like it. 😉

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

    thx!

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

    Thank you

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

    Thanks for such an informative video.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      You're welcome! I really appreciate your feedback. 😉

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

    I did not know about scroll snap.

  • @oliver139
    @oliver139 Рік тому +2

    11:19 Emmm, not 100% correct, where inline ≠ left & right and block ≠ top & bottom. This is only true if your writing mode is horizontal. If it is vertical, they become opposite then.

    • @lukas.webdev
      @lukas.webdev  Рік тому

      I don't know about you, but I don't really use/change the writing-mode in my projects too often ...
      But you're right, thanks for mentioning! 😉

    • @oliver139
      @oliver139 Рік тому +2

      @@lukas.webdev Yeah, I seldom use this property as well, but I think it is still important to know this minor difference haha

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      @@oliver139 Yeah, you're actually absolutely right about that. Thanks! 😉

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

      @@lukas.webdev It's main use is for languages that write horizontal right-to-left like Arabic or vertical right-to-left like Japanese.

  • @bilalbeny4172
    @bilalbeny4172 11 місяців тому

    nice video, thank u

  • @cordial
    @cordial 11 місяців тому

    Great video - Are all these safe to use cross browser i.e. have full browser support?

  • @DevMe-f5v
    @DevMe-f5v 10 місяців тому

    Thanks❤

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

    Love this thanks

    • @lukas.webdev
      @lukas.webdev  Рік тому

      My pleasure! I'm glad you like it. 😃

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

    Your Video is really usefull bro. Thanks. My kind request, give a clear idea about position properties (abosolute,relatice,sticky,fixed) and sometime the Letters are looking blur in website. I don't know why.. it is because of font family or font weight or any css missing. So clear this too.. Thanks in advance..❤

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

    ❤Thanks Sir!

    • @lukas.webdev
      @lukas.webdev  Рік тому +1

      You're welcome! Thanks for your feedback. 😉

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

    clickbait but will really help to boost the productivity!!

    • @lukas.webdev
      @lukas.webdev  Рік тому

      Thanks for your feedback, I'm happy to hear that!! 😉
      But what exactly is misleading here, the title or the thumbnail? Would be helpful if you could give me more details ...

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

    very cool, ty