Top 10 CSS One Liners That Will Blow Your Mind

  Рет қаралды 869,147

developedbyed

developedbyed

Күн бұрын

🚀 Upgrade your web development skills with my courses: developedbyed.com/
In today's episode, I will show you some of my favourite CSS properties out there. These cool css tips and tricks will help you upgrade your website to the next level. This list contains some CSS tricks and properties that you may not know of.
💡 If you want to learn more about React, check out my channel for more React tutorials and you can find React courses on my website. developedbyed.com
🛴 Follow me on:
Twitter: / developedbyed
Github: github.com/developedbyed/
Instagram: / developedbyed
#css #programming

Пікірлер: 581
@zachjensz
@zachjensz Жыл бұрын
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
@_diplomata
@_diplomata Жыл бұрын
Thanks man, I hate videos that dont have predefined timestamps
@waleedsharif618
@waleedsharif618 Жыл бұрын
Thanks
@jenstornell
@jenstornell Жыл бұрын
Me too. I'll never go back to this channel again.
@renegroulx7029
@renegroulx7029 Жыл бұрын
Zach Jensz reminds me of the guy that I cheated off during test in high school.
@samsg
@samsg Жыл бұрын
📖 scroll css
@kwanele_dev
@kwanele_dev Жыл бұрын
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 Жыл бұрын
If only all programming was like this
@AkumaTheGreat
@AkumaTheGreat Жыл бұрын
Damn 🔥
@arshadtbuchori5000
@arshadtbuchori5000 Жыл бұрын
Aint no wayyy. Wished i found out that way 😂
@PaulMcCannWebBuilder
@PaulMcCannWebBuilder Жыл бұрын
@Tris gap works in Safari, caniuse just says it doesn't work in multi-column.
@kingnonnnnn
@kingnonnnnn Жыл бұрын
@@user-jg6yz7wq3j not true! safari supports gap since version 10+ inside display grid elements. and since 14.1 inside flex elements.
@krupapanchal9908
@krupapanchal9908 Жыл бұрын
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 Жыл бұрын
交个朋友
@ghaznavipc
@ghaznavipc Жыл бұрын
10. Prevent from selecting => pointer-events: none;
@andycrazy120
@andycrazy120 Жыл бұрын
@@ghaznavipc 交个朋友
@ghaznavipc
@ghaznavipc Жыл бұрын
@@andycrazy120 What do you mean by "To make friends"? (I translate your comment in google translate)
@andycrazy120
@andycrazy120 Жыл бұрын
@@ghaznavipc Meet and make friends
@bancroftberlin
@bancroftberlin Жыл бұрын
"Boom, you are in the UK, bitch 😂!" You won't hear that on many other coding channels and I love it.
@garrysyt8461
@garrysyt8461 Жыл бұрын
😂😂😂
@devrd5
@devrd5 Жыл бұрын
He's real
@equious8413
@equious8413 Жыл бұрын
Yup. Definitely rewound. Lol
@MatichekYoutube
@MatichekYoutube Жыл бұрын
UK AND all of the former colonies :D
@ShadowVipers
@ShadowVipers Жыл бұрын
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.
@obed.raimundo
@obed.raimundo 8 ай бұрын
Love these! I've used a good few of these but the other ones are new to me. Thanks for these!!
@PaulMcCannWebBuilder
@PaulMcCannWebBuilder Жыл бұрын
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).
@domenicpolsoni8370
@domenicpolsoni8370 Жыл бұрын
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 11 ай бұрын
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
@rgdayo
@rgdayo Жыл бұрын
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 Жыл бұрын
Is CSS legacy stuff?
@SirZyPA
@SirZyPA Жыл бұрын
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.
@djs1258
@djs1258 Жыл бұрын
Man, Ed been long time watching back your course videos..... Good to see the excitement and cool work of yours continuing consistently
@NNNedlog
@NNNedlog Жыл бұрын
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
@ArneBab
@ArneBab 11 ай бұрын
object-fit: cover - that one and scroll snapping were new to me. Thank you!
@Alexandra-ou1gl
@Alexandra-ou1gl 11 ай бұрын
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!
@developedbyed
@developedbyed Жыл бұрын
Let me know your fave css tricks that people might not know!
@techy_nidhi
@techy_nidhi Жыл бұрын
Vertical text 🤩🙌
@sbw94
@sbw94 Жыл бұрын
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 Жыл бұрын
display: none; 😂 boom
@HtopSkills
@HtopSkills Жыл бұрын
writing-mode
@evgenyurazovsky
@evgenyurazovsky Жыл бұрын
*{margin:0;padding:0}
@user-rm7yc3uu6n
@user-rm7yc3uu6n 8 ай бұрын
I love the last part with the gradient animation text im gonna have to steal that idea my friend great work
@david0pi
@david0pi Жыл бұрын
THAT SMOOTH SCROLLING ONE IS SO PERFECT.
@tonyross5178
@tonyross5178 Жыл бұрын
The one about resizing a box helps me a lot! Thank you!
@eneshamzaj328
@eneshamzaj328 Жыл бұрын
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 Жыл бұрын
pointer-events also gets rid of other cursor actions like hover, right click, etc
@RexGalilae
@RexGalilae Жыл бұрын
@@darom_96 Wouldn't that hide the text though?
@user-fu7rv1xk2f
@user-fu7rv1xk2f Жыл бұрын
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 Жыл бұрын
Or even better, both.
@hype-king3193
@hype-king3193 Жыл бұрын
also "cursor: default"
@davidvideauortega287
@davidvideauortega287 Жыл бұрын
This video is AMAZING. So many cool tricks! I think I need more of these kind of videos.
@archer201977
@archer201977 Жыл бұрын
Glad i found this video, thanks man! on my 13years of web development still there are tons of things that I never knew.
@paulmathew1214
@paulmathew1214 Жыл бұрын
Thanks! The text gradient styling is super cool. I already found a use for it!
@felipesdam
@felipesdam Жыл бұрын
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.
@KadenAE
@KadenAE Жыл бұрын
In addition to the resize thing, you can set a min-width/min-height and a max-width/max-height to set boundries
@makubex9087
@makubex9087 Жыл бұрын
It really worked for me after I look and try some tutorials, yours is the one that worked. Owe you a lot.
@JIu4Ho
@JIu4Ho Жыл бұрын
Just started learning front-end on bootcamp and this video is so cool and makes me wanna use all these tricks
@cmyk8964
@cmyk8964 10 ай бұрын
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!
@sandrachiamaka
@sandrachiamaka Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
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 11 ай бұрын
@@SirZyPA that's something I'll have to keep in mind always. Thank you.
@godnyx117
@godnyx117 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
@@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!
@kurdi_x5842
@kurdi_x5842 Жыл бұрын
you have been so useful during my html learning
@tropicalverktaki
@tropicalverktaki Жыл бұрын
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
@baconchaney
@baconchaney Жыл бұрын
Can't believe I didn't know about flex-gap! Very helpful and honestly would have saved me lots of frustration
@dron..4898
@dron..4898 Жыл бұрын
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 2 ай бұрын
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?
@user-rq2ek3he9w
@user-rq2ek3he9w 2 ай бұрын
I love how natural you are in your video you have my sub
@cosmo-rodrigues
@cosmo-rodrigues 3 ай бұрын
There is no word better than AWESOME to describe this video. Thank you so much for sharing so amazing knowledge.
@TomasMisura
@TomasMisura 3 ай бұрын
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!
@visualdisorder
@visualdisorder 7 ай бұрын
Hey Ed! What is the vs code theme you were using in this video?
@peachymorse
@peachymorse 7 ай бұрын
That was lit 🔥
@thepretzelball
@thepretzelball Ай бұрын
Very useful video. I stumbled upon this video and helped me solve an issue with text-truncation I was having.
@perioni
@perioni Жыл бұрын
these are really helpful. ill save this video for a time in need. thanks bro.
@jahirnoriega6103
@jahirnoriega6103 Жыл бұрын
Man love the videos keep going ❤💪🏽
@protopan7722
@protopan7722 Жыл бұрын
love the new video quality man!!!
@MuzicFreakNumberOne
@MuzicFreakNumberOne Жыл бұрын
wow that smooth scrolling is crazy simple, good job
@jijojosein
@jijojosein 8 ай бұрын
I love your energy!
@lifehackstricks7817
@lifehackstricks7817 Жыл бұрын
for the last fade animation you could get the same effect by using animation fill mode
@keokawasaki7833
@keokawasaki7833 Жыл бұрын
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 Жыл бұрын
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.
@fattalbirotaboali5142
@fattalbirotaboali5142 9 ай бұрын
Amazing ❤🎉
@jaidendechon7960
@jaidendechon7960 Жыл бұрын
Great stuff! Thanks for making this!
@fatimahkhan9367
@fatimahkhan9367 Жыл бұрын
This is really helpful Thanks Guy
@KrisHoja
@KrisHoja Жыл бұрын
Super cool video - please do more of these!
@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.
@NiceChange
@NiceChange 6 ай бұрын
This is such a great resource. Cheers
@epicdungeontiles
@epicdungeontiles 11 ай бұрын
Loved all of these!
@stephanmoolman328
@stephanmoolman328 Жыл бұрын
I keep coming back to this video, awesome tips
@thescribblersdiary
@thescribblersdiary 6 ай бұрын
loved it sir! Didn't know most of them !!!! Thanks a lot sir
@AstroSirrus
@AstroSirrus Жыл бұрын
Great one-liners! A blender design/developed integrated website would be awesome!
@mauricebuchi6973
@mauricebuchi6973 Жыл бұрын
Nice tricks. Have used object fit, smooth scrolling, pointer events before. Thanks for that flipping text will be using next
@Alex-xe6bl
@Alex-xe6bl Жыл бұрын
Just to add on number 9: Object-fit is best used with object-position
@kw9186
@kw9186 Жыл бұрын
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 Жыл бұрын
It wasn't an extension, If you use the auto complete for the animation property it will write all the option as placeholder
@alejandrosantiagomanriquen123
@alejandrosantiagomanriquen123 Жыл бұрын
My favorite one liner would be white-space: nowrap; It prevents text from wrapping to the container size, and is very useful with titles
@hajimeippo804
@hajimeippo804 3 ай бұрын
This is so useful, thank you very much!
@nyctophillia2292
@nyctophillia2292 4 ай бұрын
Truncate is awesome!! i was implementing it with react(js) before now i'll do it css Thanks Ed
@ac6852
@ac6852 25 күн бұрын
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
@princecodes247
@princecodes247 Жыл бұрын
Awesome video. Thanks for always making awesome videos like this. You're the reason I was able to become a full stack developer Thank you so much🥺🔥🔥🔥
@matthewstrauck4646
@matthewstrauck4646 Жыл бұрын
Great video! Helps me as someone who already knows the basics but doesn’t know where to go from there.
@lukas.webdev
@lukas.webdev 11 ай бұрын
Maybe me new video about the Top 10 CSS Features you should know and use in 2023 will help you too? 😉
@DiogoLScarmagnani
@DiogoLScarmagnani 5 ай бұрын
Very good tips, thank you for sharing this kind of knowledge.
@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
@user-ic4cd6vl5c
@user-ic4cd6vl5c Жыл бұрын
This was so helpful!! Thank you
@Fede261
@Fede261 Жыл бұрын
This is great, thank you!
@BenDemeyere
@BenDemeyere 3 ай бұрын
Found some new ones here, great tips!
@maganopigadus
@maganopigadus Жыл бұрын
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
@BalachandranSumathiB
@BalachandranSumathiB 8 ай бұрын
Can we use resize for tables? To resize columns and rows manually
@CharlesSmall
@CharlesSmall Жыл бұрын
Thank you for the cool functions
@webdevcoursestv
@webdevcoursestv Жыл бұрын
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
@moeinzidehsaraei8738
@moeinzidehsaraei8738 11 ай бұрын
That's great thank you
@AlexUnderCMYK
@AlexUnderCMYK Жыл бұрын
Knew them all but had a great time anyway! Subscribed!
@ArifBillahOnGoogle
@ArifBillahOnGoogle Жыл бұрын
Really cool stuff. Thank you very much!
@jcnation5393
@jcnation5393 8 ай бұрын
I was thinking of watching flex tutorial, just to add the gap, but this video saved my time
@NamNguyen-tv5ie
@NamNguyen-tv5ie Жыл бұрын
very helpful, thank u so much
@MaronsCreative
@MaronsCreative 5 ай бұрын
Great Job 👏 I like your style, you are unique!
@ekoneko6958
@ekoneko6958 Ай бұрын
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 :)
@joej5081
@joej5081 Жыл бұрын
Great video and great information ❤
@Ghulammustafa-wg6cy
@Ghulammustafa-wg6cy Жыл бұрын
Very helpful video. Thank you🥰!
@dorianbirch7820
@dorianbirch7820 Жыл бұрын
Amazing, thank you!!
@andrewiglinski148
@andrewiglinski148 Жыл бұрын
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!
@shawnnosaurus
@shawnnosaurus Жыл бұрын
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_ Жыл бұрын
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
@ebrelus7687
@ebrelus7687 Жыл бұрын
Whole lot of cool stuff. Appreciated
@madquakerone
@madquakerone Ай бұрын
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.
@AlexMSib
@AlexMSib Жыл бұрын
Cool video man! I used 3 of these at work today what were the odds 🤣🤣
@ismalit
@ismalit Жыл бұрын
Great stuff. Thanks!
@AmbreenShamshairAli
@AmbreenShamshairAli 10 ай бұрын
Amazing you have guides osummm❤
@rahee3036
@rahee3036 Жыл бұрын
The scroll-snap trick is new to me... Thanks a lot for the video! + Subscriber + Like + Respect
@sasagasparovic9351
@sasagasparovic9351 2 ай бұрын
Very simple, very short and very usefull, I Like it.
@snehabhamare09
@snehabhamare09 Жыл бұрын
Very useful and cool stuff..thank you so much
@TentangKode
@TentangKode Жыл бұрын
Amazing video as always 🎉
@mkl.stranger
@mkl.stranger 6 ай бұрын
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 ?
@nchutchind
@nchutchind Жыл бұрын
Using `pointer-events: none` will also cause click events to not register on things. You could use `user-select: none` to prevent just selection.
@HarveyMyers
@HarveyMyers 7 ай бұрын
Thanks!
@madsteeez
@madsteeez Жыл бұрын
Your positive energy is uplifting
@cristian702
@cristian702 Жыл бұрын
It's more helpful than i first tought. I used JS for most of those
@sahiraahamed
@sahiraahamed Жыл бұрын
Very nice... Something new I learned today.. 👍Thanks a lot sir😊just ultimate👏
Top 10 Javascript One Liners YOU MUST KNOW!
14:16
developedbyed
Рет қаралды 187 М.
5 Modern CSS Features You Should Know In 2024
5:58
Academind
Рет қаралды 75 М.
The World's Fastest Cleaners
00:35
MrBeast
Рет қаралды 95 МЛН
Сын Расстроился Из-за Новой Стрижки Папы 😂
00:21
Глеб Рандалайнен
Рет қаралды 4,1 МЛН
Balloon Pop Racing Is INTENSE!!!
01:00
A4
Рет қаралды 4,6 МЛН
How to Properly Layout A Website (For Beginners)
14:50
The Website Architect
Рет қаралды 466 М.
I've been challenged to a CSS BATTLE by Web Dev Simplified
42:22
Kevin Powell
Рет қаралды 946 М.
6 UI Hacks I Wish I Knew As A Beginner
11:11
Tim Gabe
Рет қаралды 690 М.
CSS Tips And Tricks I Wish I Knew Before
12:12
Lama Dev
Рет қаралды 386 М.
Web Developer Reacts to 5 Insane Personal Portfolio Websites
12:22
Use these instead of vh
6:06
Kevin Powell
Рет қаралды 426 М.
Award Winning Animation With Only 20 Lines Of CSS?
6:59
Hyperplexed
Рет қаралды 1,6 МЛН
10 CSS Pro Tips - Code this, NOT that!
9:39
Fireship
Рет қаралды 2,1 МЛН
Big Tech AI Is A Lie
16:56
Tina Huang
Рет қаралды 55 М.
The Top 10 Websites of 2022 - CSSDesignAwards
24:45
DesignCourse
Рет қаралды 325 М.
Subscribe for more!! #procreate #logoanimation #roblox
0:11
Animations by danny
Рет қаралды 3,7 МЛН
Опасная флешка 🤯
0:22
FATA MORGANA
Рет қаралды 608 М.