Top 10 CSS One Liners That Will Blow Your Mind

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น • 632

  • @zachjensz
    @zachjensz 2 ปีที่แล้ว +737

    0:45 1. Vertical Text
    1:23 2. Gap
    2:07 3. Flip an Image
    2:36 4. Smooth Scrolling
    3:25 5. Scroll Snapping
    5:54 6. Resize Everything
    6:50 7. Truncate
    7:44 8. Text Gradients
    8:55 9. Object Fit
    10:32 10. Pointer Events

    • @diplo_yt
      @diplo_yt 2 ปีที่แล้ว +25

      Thanks man, I hate videos that dont have predefined timestamps

    • @waleedsharif618
      @waleedsharif618 2 ปีที่แล้ว

      Thanks

    • @jenstornell
      @jenstornell 2 ปีที่แล้ว +5

      Me too. I'll never go back to this channel again.

    • @renegroulx7029
      @renegroulx7029 2 ปีที่แล้ว

      Zach Jensz reminds me of the guy that I cheated off during test in high school.

    • @samsg
      @samsg ปีที่แล้ว

      📖 scroll css

  • @kwanele_dev
    @kwanele_dev 2 ปีที่แล้ว +917

    the funniest thing is I discovered "gap" by myself. I didn't want to use margin on my flex items, and I just thought of "gap", wrote it down and it worked 🤣🤣🤣

    • @itz-electro
      @itz-electro 2 ปีที่แล้ว +115

      If only all programming was like this

    • @AbhishekKhareOriginal
      @AbhishekKhareOriginal 2 ปีที่แล้ว +3

      Damn 🔥

    • @arshadtbuchori5000
      @arshadtbuchori5000 2 ปีที่แล้ว +5

      Aint no wayyy. Wished i found out that way 😂

    • @PaulMcCannWebBuilder
      @PaulMcCannWebBuilder 2 ปีที่แล้ว +1

      @Tris gap works in Safari, caniuse just says it doesn't work in multi-column.

    • @kingnonnnnn
      @kingnonnnnn 2 ปีที่แล้ว +2

      @@user-jg6yz7wq3j not true! safari supports gap since version 10+ inside display grid elements. and since 14.1 inside flex elements.

  • @krupapanchal9908
    @krupapanchal9908 2 ปีที่แล้ว +473

    1. Vertical Text => writing-mode
    2. Flex-Gap => gap
    3. Flip an image => transform: scaleX(-1)
    4. Smooth Scrolling => scroll-behaviour: smooth
    5. Scroll Snapping => scroll-snap-type: x mandatory; scroll-snap-align: center;
    6. Resize Everything => resize: both | vertical | horizontal;
    7. Truncate => --webkit-line-clamp: 1;
    8. Text Gradients => --webkit-background-clip, --webkit-text-fill-color
    9. Fix image stretching issue => object-fit;

    • @andycrazy120
      @andycrazy120 2 ปีที่แล้ว +1

      交个朋友

    • @ghaznavipc
      @ghaznavipc 2 ปีที่แล้ว +11

      10. Prevent from selecting => pointer-events: none;

    • @andycrazy120
      @andycrazy120 2 ปีที่แล้ว +1

      @@ghaznavipc 交个朋友

    • @ghaznavipc
      @ghaznavipc 2 ปีที่แล้ว +2

      @@andycrazy120 What do you mean by "To make friends"? (I translate your comment in google translate)

    • @andycrazy120
      @andycrazy120 2 ปีที่แล้ว

      @@ghaznavipc Meet and make friends

  • @bancroftberlin
    @bancroftberlin 2 ปีที่แล้ว +145

    "Boom, you are in the UK, bitch 😂!" You won't hear that on many other coding channels and I love it.

    • @garrysyt8461
      @garrysyt8461 2 ปีที่แล้ว

      😂😂😂

    • @devrd5
      @devrd5 2 ปีที่แล้ว +1

      He's real

    • @equious8413
      @equious8413 2 ปีที่แล้ว

      Yup. Definitely rewound. Lol

    • @MatichekYoutube
      @MatichekYoutube ปีที่แล้ว +1

      UK AND all of the former colonies :D

    • @TareUhhhhhh2
      @TareUhhhhhh2 6 หลายเดือนก่อน +1

      I love that it's the most replayed part too. Everyone was like "Wait, what? Did I just hear that?" 🤣

  • @developedbyed
    @developedbyed  2 ปีที่แล้ว +28

    Let me know your fave css tricks that people might not know!

    • @techy_nidhi
      @techy_nidhi 2 ปีที่แล้ว +3

      Vertical text 🤩🙌

    • @sbw94
      @sbw94 2 ปีที่แล้ว +1

      Hey, can you update the link for the "Full Course Content" inside the JavaScript and HTML course? The Google Drive link goes to a 404 google drive page. Thanks!

    • @pawegabski5422
      @pawegabski5422 2 ปีที่แล้ว +2

      display: none; 😂 boom

    • @HtopSkills
      @HtopSkills 2 ปีที่แล้ว

      writing-mode

    • @evgenyurazovsky
      @evgenyurazovsky 2 ปีที่แล้ว

      *{margin:0;padding:0}

  • @ShadowVipers
    @ShadowVipers 2 ปีที่แล้ว +59

    At the end of the video if you're just trying to stop the user from selecting the text (and seeing the text cursor), then "user-select: none" would be more appropriate than "pointer-events". Using "pointer-events" would be more for stopping a user from clicking an input, like a button or a text field, etc. The "pointer-events" property also has the side-effect of preventing the inspection click (Shortcut: "ctrl+shift+c") from opening in the dev-tools console (at least on Chrome) which if you're developing a website can get a bit annoying. I also saw in another comment that "pointer-events: none" also prevents hover effects, right click context menus, etc.
    Something slightly unrelated but still important that I wanted to share is:
    Do not use "pointer-events: none" instead of the "disabled" attribute on an input. This is because while it does prevent mouse/tap events, it doesn't affect keyboard navigation
    So if you're building a website with accessibility in mind it's important to consider that people can focus in on the input with their keyboards.

  • @PaulMcCannWebBuilder
    @PaulMcCannWebBuilder 2 ปีที่แล้ว +19

    As a tip for text gradients (No. 8), order matters in your rule: set the background first, then clip. Or don't use the 'background' shortcut (gradients are set with background-image).

  • @richardwilliamsmusic
    @richardwilliamsmusic ปีที่แล้ว

    when you type in animation at 12:01 then it shows the parameters you can potentially type in . What extension does that?

  • @domenicpolsoni8370
    @domenicpolsoni8370 2 ปีที่แล้ว +10

    You just saved me from having to write out some JS to handle object fade in transitions. I've always had to observe animationend or transitionend events in order to manipulate the display: none style. I've been doing this for quite some time now. Thank you so much!

    • @monoffo
      @monoffo ปีที่แล้ว +1

      In case you are using react, I suggest you take a look at CSSTransition npm package. It simplifies animations a lot by applying different subclasses during the animation, and it allows to combine display: none with any transition very easily.
      However, I am sure that even outside react and npm there are plenty of similar solutions, so check it out

  • @pacomedtej
    @pacomedtej 4 หลายเดือนก่อน +1

    I love how you express and talk so confidently! Thanks fort the tips!

  • @Rocatagliata25
    @Rocatagliata25 2 ปีที่แล้ว +1

    12:07 What's the extension used to get that previous instructions/recomendations?

  • @shawnnosaurus
    @shawnnosaurus 2 ปีที่แล้ว +3

    Love the sense of humour. Personally `box-size: border-box;` is my top pick, that I even recommend placing as browser resets for how powerful it is.

    • @_invencible_
      @_invencible_ 2 ปีที่แล้ว

      yeah it really should be the default. The first time it took me so long to find out why my 100% width div with a border was overflowing

  • @rgdayo
    @rgdayo 2 ปีที่แล้ว +20

    These were awesome Ed!
    As a full-stack dev on some legacy systems I usually loathe dealing in the CSS but these proved to me that not everything has to be difficult. I just need to keep learning.

    • @liver17
      @liver17 ปีที่แล้ว +2

      Is CSS legacy stuff?

    • @SirZyPA
      @SirZyPA ปีที่แล้ว +3

      not sure what you mean by legacy systems in a css context?
      and if you mean stylesheets that use float layouts, ususally those are pretty easy to just change into modern options like flex, grid, etc.

  • @kw9186
    @kw9186 2 ปีที่แล้ว +7

    Great video! Could I ask, what was the vscode extension you were using that showed all the parameters for the animation property (timing-function, etc)

    • @oriel-elkabets
      @oriel-elkabets 2 ปีที่แล้ว +3

      It wasn't an extension,
      If you use the auto complete for the animation property it will write all the option as placeholder

  • @godnyx117
    @godnyx117 ปีที่แล้ว +8

    I always thought that HTML and CSS can only do so little and you can only STYLE things. Now that I'm learning CSS, OMFG!!!! I don't believe how much built-in functionality it has. I'm currently in the ResizeBoth trick and I'm BLOWN AWAY!!!
    Edit: OMG! The "pointers-event" was also something I was searching for!!!

    • @babatundeadenowo7568
      @babatundeadenowo7568 ปีที่แล้ว +2

      When I started building UIs, I knew no Javascript and I had the non-starter syndrome of "JS is hard", so with just HTML and CSS, I had already been creating hamburger toggle menu and website dark and light mode switch. Not a drop of JS in those code.

    • @godnyx117
      @godnyx117 ปีที่แล้ว +1

      @@babatundeadenowo7568 Thank you for the comment! JS seems pretty easy to me, I never understood this "JS is hard" thing some people say. The more I learn, CSS is also getting more bearable and even enjoyable at some points!

  • @ArneBab
    @ArneBab ปีที่แล้ว +2

    object-fit: cover - that one and scroll snapping were new to me. Thank you!

  • @BroScro
    @BroScro ปีที่แล้ว +5

    dont eliminate its pointer events to get rid of selection. that is user-select: none; and also cursor: default; will keep the cursor the same. and u can still have pointer events if u need to on that element

    • @BroScro
      @BroScro ปีที่แล้ว

      this is in response to number 10

  • @keokawasaki7833
    @keokawasaki7833 2 ปีที่แล้ว +6

    with pointer-events: none you are suppressing all the events on that element. So the element exists there but no click events or mousemove events are triggered in Javascript. This makes it super handy when creating an overlay that covers the entire page, cuz the events can pass through when the overlay is inactive

    • @Voldrog
      @Voldrog 2 ปีที่แล้ว

      Using pointer-events to make an item non-interactive is a bit... Well I'd say it's not the best approach. You should handle your event logic in js, exclude an element from it. Mixing CSS into the logic of interaction seems to me like a workaround.

    • @zebcode
      @zebcode 4 หลายเดือนก่อน

      Thank you, I was wondering what the difference between pointer events and user-select: none; was.

  • @nchutchind
    @nchutchind ปีที่แล้ว +2

    Using `pointer-events: none` will also cause click events to not register on things. You could use `user-select: none` to prevent just selection.

  • @maganopigadus
    @maganopigadus 2 ปีที่แล้ว +18

    The default object-fit is not contain, it's fill.
    Also elements with display:none are not removed from the dom they just never render. they are fully accessible programmatically

  • @matthewstrauck4646
    @matthewstrauck4646 ปีที่แล้ว +1

    Great video! Helps me as someone who already knows the basics but doesn’t know where to go from there.

    • @lukas.webdev
      @lukas.webdev ปีที่แล้ว

      Maybe me new video about the Top 10 CSS Features you should know and use in 2023 will help you too? 😉

  • @JabieSorenson
    @JabieSorenson ปีที่แล้ว

    I love the last part with the gradient animation text im gonna have to steal that idea my friend great work

  • @letmetelluuu
    @letmetelluuu ปีที่แล้ว +1

    You made my day!! Learned so much productive today!! Thank you so much man

  • @felipesdam
    @felipesdam 2 ปีที่แล้ว +1

    If it weren't this video I could spent so much time to solve a task. Thank you for sharing this content. Scroll snapping blow up my mind. It helped a lot.

  • @archer201977
    @archer201977 2 ปีที่แล้ว +1

    Glad i found this video, thanks man! on my 13years of web development still there are tons of things that I never knew.

  • @chrisicotec7652
    @chrisicotec7652 3 หลายเดือนก่อน

    i love that on the vetical resizing "good luck finding a use for that one".... challenege accepted!

  • @eneshamzaj328
    @eneshamzaj328 2 ปีที่แล้ว +102

    Instead of using pointer-events: none; to get rid of user selection,
    You can use user-select: none;
    ps:
    Thank You, for your Amazing work Ed.

    • @RexGalilae
      @RexGalilae 2 ปีที่แล้ว +17

      pointer-events also gets rid of other cursor actions like hover, right click, etc

    • @RexGalilae
      @RexGalilae 2 ปีที่แล้ว

      @@darom_96
      Wouldn't that hide the text though?

    • @9463-g1j
      @9463-g1j 2 ปีที่แล้ว

      Also only needs setting on a parent div to get rid of selection on all child divs. Seen people who put it on everything, no need to bloat your code

    • @maganopigadus
      @maganopigadus 2 ปีที่แล้ว

      Or even better, both.

    • @hype-king3193
      @hype-king3193 ปีที่แล้ว

      also "cursor: default"

  • @ac6852
    @ac6852 8 หลายเดือนก่อน

    Thumbsed-up bc you got me w the clickbait title and you telling me to deal w it w the zoom in made me cackle lolololol

  • @sandrachiamaka
    @sandrachiamaka 2 ปีที่แล้ว +35

    Nice compilation 👍
    Also, Number 9: Object-fit can also be achieved with
    .box {
    background-image:url(car.png);
    background-size: cover;
    }
    Same as object fit, it covers the width and height of its parent element.

    • @dennisperremans
      @dennisperremans 2 ปีที่แล้ว +12

      That's true, but the issue in your case is that you can't add an alt attribute to the image because it's a background image.

    • @NIKENKO
      @NIKENKO 2 ปีที่แล้ว +3

      true, but a lot of times you work with websites where you cant just replace img with background, and in that case, object-fit is godsent

    • @SirZyPA
      @SirZyPA ปีที่แล้ว +5

      in most cases you wanna avoid background image if possible, since you cant add alt text, so if people are using accessibility options like a narrator, and your image is there to add context, youre making your website less usable for people with certain accessibility needs.
      background image is fine for things like gradients or other purely cosmetic images, but once they have a functional reason to be there, you wanna use the img element so that people who needs accessibility options, can also get context from them.

    • @edosegheosamagbe9077
      @edosegheosamagbe9077 ปีที่แล้ว

      @@SirZyPA that's something I'll have to keep in mind always. Thank you.

  • @tropicalverktaki
    @tropicalverktaki 2 ปีที่แล้ว +2

    wow, scroll behavior has got to be the best one liner, I remember having to write several lines of Javascript code to achieve that effect

  • @KadenAE
    @KadenAE 2 ปีที่แล้ว +1

    In addition to the resize thing, you can set a min-width/min-height and a max-width/max-height to set boundries

  • @Alex-xe6bl
    @Alex-xe6bl 2 ปีที่แล้ว +6

    Just to add on number 9: Object-fit is best used with object-position

  • @davidvideauortega287
    @davidvideauortega287 2 ปีที่แล้ว +1

    This video is AMAZING. So many cool tricks! I think I need more of these kind of videos.

  • @obed.raimundo
    @obed.raimundo ปีที่แล้ว

    Love these!
    I've used a good few of these but the other ones are new to me. Thanks for these!!

  • @KrisHoja
    @KrisHoja 2 ปีที่แล้ว +1

    Super cool video - please do more of these!

  • @djs1258
    @djs1258 2 ปีที่แล้ว +1

    Man, Ed been long time watching back your course videos..... Good to see the excitement and cool work of yours continuing consistently

  • @seanmoore-tc2qp
    @seanmoore-tc2qp ปีที่แล้ว

    when you are adding your values, how did you get text to show so you know which values to add, instead of the default that's typically blank. example at 12:13 animation: then your values are displayed. how do i add this? thanks!

    • @b1-rogr470
      @b1-rogr470 ปีที่แล้ว

      You mean the html page ?

  • @makubex9087
    @makubex9087 2 ปีที่แล้ว

    It really worked for me after I look and try some tutorials, yours is the one that worked. Owe you a lot.

  • @dron..4898
    @dron..4898 2 ปีที่แล้ว +2

    Resize both can be used to open something. If u have a container position fixed with a lower z-index you can resize both a small div with and arrow and once you resize it you can see hidden text or something

    • @Mathhead2000
      @Mathhead2000 10 หลายเดือนก่อน

      This effect sounds really cool, but I'm not sure I understand how to do it from your description. You are saying something is hiding behind the background but gets revealed when you resize the foreground box on top of it?

  • @rsstnnr76
    @rsstnnr76 หลายเดือนก่อน

    6:50 Being able to truncate is cool, but how do you get the rest of the text to show up?

  • @eugeneponomarov7429
    @eugeneponomarov7429 4 หลายเดือนก่อน +1

    If you want to get rid of selection then you can use "user-select: none", but using "pointer-events: none" is not a good idea since you may need to capture the click event on that node in the future.

  • @cmyk8964
    @cmyk8964 ปีที่แล้ว +4

    The object-fit property can also be used to shrink the image in its box, so that all of the image can be visible without aspect ratio distortion!

    • @oa2766
      @oa2766 6 หลายเดือนก่อน

      How

  • @thepretzelball
    @thepretzelball 9 หลายเดือนก่อน

    Very useful video. I stumbled upon this video and helped me solve an issue with text-truncation I was having.

  • @zoifjsdlkfzhjfupoizn
    @zoifjsdlkfzhjfupoizn 2 หลายเดือนก่อน

    Yooo how did you get all of those indicators when you used the 'animation' proprety at 12:05

  • @kurdi_x5842
    @kurdi_x5842 2 ปีที่แล้ว +2

    you have been so useful during my html learning

  • @protopan7722
    @protopan7722 2 ปีที่แล้ว

    love the new video quality man!!!

  • @obaro-q1m
    @obaro-q1m 9 หลายเดือนก่อน

    I love how natural you are in your video
    you have my sub

  • @zakidz6716
    @zakidz6716 2 ปีที่แล้ว +5

    you can use transform values without transform
    example:
    scale: -1;
    rotate: 180deg;
    .
    .
    .

    • @siema32
      @siema32 2 ปีที่แล้ว +1

      this is supported by chrome only for now

    • @zakidz6716
      @zakidz6716 2 ปีที่แล้ว

      @@siema32 yes, i hope it will be supported from all browsers sooner because it's so helpfull

  • @MuzicFreakNumberOne
    @MuzicFreakNumberOne 2 ปีที่แล้ว

    wow that smooth scrolling is crazy simple, good job

  • @HarveyMyers
    @HarveyMyers ปีที่แล้ว

    Thanks!

  • @lukas.webdev
    @lukas.webdev ปีที่แล้ว

    Just yesterday I also posted a video about the Top 10 CSS Features you should know and use in 2023.
    I was surprised, that we only got 3 points in common... 😲
    And as usual: Great Intro 😄👍 Keep it up buddy!

  • @MaxJacobson1
    @MaxJacobson1 2 ปีที่แล้ว +4

    If you want to use semantic HTML for a button, but you don't want all the browsers to add the default styling for it, just do all: unset; and it will reset all the default styling, no matter the element.

  • @erikvanzanen
    @erikvanzanen 10 หลายเดือนก่อน

    This was great, thanks a lot. Just one thing, how do you get this ' intellisense ' thing for your CSS going on? See 12:03

  • @parvizfathianpour9509
    @parvizfathianpour9509 5 หลายเดือนก่อน

    💯 cool stuff, I knew one of the trick but I enjoy to see your info, thanks

  • @tonyross5178
    @tonyross5178 2 ปีที่แล้ว

    The one about resizing a box helps me a lot! Thank you!

  • @DerekGomez-n1w
    @DerekGomez-n1w 3 หลายเดือนก่อน

    I can't believe I spent so much time doing vertical text the hard way! I was using position: relative & transform: rotate !

  • @perioni
    @perioni ปีที่แล้ว

    these are really helpful. ill save this video for a time in need. thanks bro.

  • @TomasMisura
    @TomasMisura 11 หลายเดือนก่อน

    Thank you for this video and that very useful tips! From this list I know only gap and have learned using it as much as possible. liked and subscribed!

  • @westmovie7517
    @westmovie7517 ปีที่แล้ว +1

    2:33 Boom you are in the UK 😂😂

  • @lifehackstricks7817
    @lifehackstricks7817 2 ปีที่แล้ว +3

    for the last fade animation you could get the same effect by using animation fill mode

  • @paulmathew1214
    @paulmathew1214 2 ปีที่แล้ว

    Thanks! The text gradient styling is super cool. I already found a use for it!

  • @JIu4Ho
    @JIu4Ho 2 ปีที่แล้ว

    Just started learning front-end on bootcamp and this video is so cool and makes me wanna use all these tricks

  • @NNNedlog
    @NNNedlog 2 ปีที่แล้ว +2

    Hello dev Ed! I really enjoyed your react portfolio website course with TailwindCSS. I'm almost done with mine and I'm so glad I found your videos

  • @angel-pu7su
    @angel-pu7su 2 ปีที่แล้ว +1

    I love your ever happy vibe. Great video too.

  • @AlexUnderCMYK
    @AlexUnderCMYK 2 ปีที่แล้ว

    Knew them all but had a great time anyway! Subscribed!

  • @Mport-UK
    @Mport-UK ปีที่แล้ว

    Good video mate as per!
    The only one I didn't know was Text Gradients. Only ever used as a background Image.

  • @Alexandra-ou1gl
    @Alexandra-ou1gl ปีที่แล้ว

    Great content man, you explain everything in a way thats easily understood and show plenty of visuals. My go to source for all things coding related!

  • @MadQuakerOne
    @MadQuakerOne 9 หลายเดือนก่อน

    What actually disable selection is user-select property. Pointer-events property is disable any pointer interaction for this DOM node - hover, click, drag, etc - so you pointer can 'hover' over elements which lay below element with this property. But user-select simply disallow you to select text/image from selecting it on the page and still blocks 'hover'ing elements below it.

  • @AstroSirrus
    @AstroSirrus 2 ปีที่แล้ว +1

    Great one-liners! A blender design/developed integrated website would be awesome!

  • @cosmo-rodrigues
    @cosmo-rodrigues 10 หลายเดือนก่อน

    There is no word better than AWESOME to describe this video. Thank you so much for sharing so amazing knowledge.

  • @jaidendechon7960
    @jaidendechon7960 2 ปีที่แล้ว

    Great stuff! Thanks for making this!

  • @thescribblersdiary
    @thescribblersdiary ปีที่แล้ว

    loved it sir! Didn't know most of them !!!! Thanks a lot sir

  • @stephanmoolman328
    @stephanmoolman328 2 ปีที่แล้ว

    I keep coming back to this video, awesome tips

  • @mkl.stranger
    @mkl.stranger ปีที่แล้ว

    Thank you very much. This helps a lot while practicing new properties. Can you tell me the name of the vs code extension which auto completes anything you type then you adjust. Like you did in this video ?

  • @alejandrosantiagomanriquen123
    @alejandrosantiagomanriquen123 2 ปีที่แล้ว

    My favorite one liner would be
    white-space: nowrap;
    It prevents text from wrapping to the container size, and is very useful with titles

  • @andrewiglinski148
    @andrewiglinski148 2 ปีที่แล้ว

    Grid min-max auto fill! I can’t remember the exact syntax off the top of my head but I have it saved as a template… perfectly responsive even grid columns every time!

  • @jayf3032
    @jayf3032 2 ปีที่แล้ว

    What extension are you using that’s shows tips on what you’re writing in code from MDN reference?

  • @ebrelus7687
    @ebrelus7687 2 ปีที่แล้ว

    Whole lot of cool stuff. Appreciated

  • @MaronsCreative
    @MaronsCreative ปีที่แล้ว

    Great Job 👏 I like your style, you are unique!

  • @harry2b2t
    @harry2b2t ปีที่แล้ว

    what vscode theme do you use? I really like the italic font type on ".container" for example

  • @AlexMSib
    @AlexMSib 2 ปีที่แล้ว +1

    Cool video man! I used 3 of these at work today what were the odds 🤣🤣

  • @baconchaney
    @baconchaney 2 ปีที่แล้ว

    Can't believe I didn't know about flex-gap! Very helpful and honestly would have saved me lots of frustration

  • @arjun4896
    @arjun4896 2 ปีที่แล้ว

    0:49
    How do you put that box in the middle?

  • @DanielColeman-ct8qu
    @DanielColeman-ct8qu ปีที่แล้ว

    i thought you would have added "columns" to this list. extremely useful piece of code to get an "insta" layout.

  • @epicdungeontiles
    @epicdungeontiles ปีที่แล้ว

    Loved all of these!

  • @mauricebuchi
    @mauricebuchi 2 ปีที่แล้ว

    Nice tricks. Have used object fit, smooth scrolling, pointer events before. Thanks for that flipping text will be using next

  • @nitsanbh
    @nitsanbh 2 ปีที่แล้ว

    10:37
    To make text unselectable use: "user-selectable: none;"
    "pointer-events: none" is bad for buttons, because it makes them not respond to the mouse at all.

    • @aleksander5298
      @aleksander5298 2 ปีที่แล้ว +1

      There is no such thing as user-selectable, there is user-select, besides, there is nothing wrong with pointer-events in such an example lol, that's why you turn off pointer events so that it can't be clicked, if you want it to become clickable after a text appears, then you also set pointer-events auto on animation end

  • @sinisterdanny
    @sinisterdanny 2 ปีที่แล้ว +1

    Hi Ed, I purchased you animation course. I see that you are doing react videos, would it be possible to do a quick implementation of the animations in Next.js? Loved the course btw, just having trouble understanding how I would implement on a React project.

    • @developedbyed
      @developedbyed  2 ปีที่แล้ว +1

      Yeah I’ll plan something out!

  • @chhavimanichoubey9437
    @chhavimanichoubey9437 2 ปีที่แล้ว +1

    you are becoming more comedic and sarcastic which is great.

  • @jahirnoriega6103
    @jahirnoriega6103 ปีที่แล้ว

    Man love the videos keep going ❤💪🏽

  • @NiceChange
    @NiceChange ปีที่แล้ว

    This is such a great resource. Cheers

  • @ΓιωργοςΤζαμας
    @ΓιωργοςΤζαμας 2 ปีที่แล้ว

    This was so helpful!! Thank you

  • @BenDemeyere
    @BenDemeyere 10 หลายเดือนก่อน

    Found some new ones here, great tips!

  • @julianrob77
    @julianrob77 2 ปีที่แล้ว +2

    How to get the animation to remain faded in at the end?

  • @paul2DD
    @paul2DD 2 ปีที่แล้ว

    Hi Ed, did you tried Astro, will love to see some tutorials on Astro from you !!!

  • @webdevcoursestv
    @webdevcoursestv 2 ปีที่แล้ว

    I subbed! I love these kinds of CSS tricks. I should make it a cheat sheet! I always get a strong Loki (not the marvel version) from you :D

  • @visualdisorder
    @visualdisorder ปีที่แล้ว

    Hey Ed! What is the vs code theme you were using in this video?

  • @ekoneko6958
    @ekoneko6958 9 หลายเดือนก่อน

    Gap is one of the things I learned about early on with Grid, so I just used it with Flex as well and it worked. Yes I used Grid before Flex lol :)

  • @DonatoBencosme
    @DonatoBencosme ปีที่แล้ว

    Pointer events works really nice if you want to prevent interaction with you website eg when loaded from an , you just need to add it to the body tag

  • @kuoyulu6714
    @kuoyulu6714 ปีที่แล้ว

    nice tips, useful and to the point, thanks!

    • @lukas.webdev
      @lukas.webdev ปีที่แล้ว

      If you want to get to know more great CSS Features: Just yesterday I also posted a video about the Top 10 CSS Features you should know and use in 2023 ... 😉