Тёмный

8 | CREATE A CSS RESET STYLESHEET | 2023 | Learn HTML and CSS Full Course for Beginners 

Dani Krossing
Подписаться 471 тыс.
Просмотров 25 тыс.
50% 1

In this video I will show you how to create a CSS reset stylesheet. 🙂 Reset styling is necessary for us to make sure our website looks the same in all browsers, since all browsers have different default styling, which messes with our own CSS.
Meyerweb: meyerweb.com/eric/tools/css/r...
Normalize.css: byby.dev/normalize-css
The New CSS Reset: css-tricks.com/an-interview-w...
Full playlist: • 1 | INTRODUCTION TO HT...
➤ GET ACCESS TO MY LESSON MATERIAL HERE!
First of all, thank you for all the support you have given me!
I am really glad to have such an awesome community on my channel. It motivates me to continue creating and uploading content! So thank you!
I am now using Patreon and RU-vid Memberships to share improved and updated lesson material, and for a small fee you can access all the material either from my memberships or Patreon, depending on your preference. I have worked hard, and done my best to help you understand what I teach.
I hope you will find it helpful :)
Memberships: / @dani_krossing
Patreon: / mmtuts

Опубликовано:

 

27 дек 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 36   
@KayleighOfSuburbia
@KayleighOfSuburbia 11 минут назад
never heard of this before o_O so useful, thanks!
@techjones8544
@techjones8544 9 месяцев назад
wow it was amazing!
@fissionchips223
@fissionchips223 8 месяцев назад
Excellent little lesson, very intuitive and clearly necessary! Awesome work as always, Dani!
@user-zu9gy1ul1p
@user-zu9gy1ul1p Год назад
Thank you dani 👍
@gonefishing2006
@gonefishing2006 Год назад
Thank you. Never knew this but I don't do much .css coding so anything you and others can toss at me the better.
@user-jf5zy1ul4y
@user-jf5zy1ul4y 9 месяцев назад
thank you! my css already worked! thank youuu
@arshad1781
@arshad1781 Год назад
Thanks 👍
@dllm3tommy741
@dllm3tommy741 Год назад
Thanks for the video
@looperrrr
@looperrrr 5 месяцев назад
Good stuff. Thanks for the video!
@panka33
@panka33 3 месяца назад
amazing, to say the least.... thank you
@doneilchapman1542
@doneilchapman1542 5 месяцев назад
Thank you I found this very helpful
@adorshovoice6748
@adorshovoice6748 Год назад
Thanks
@jouini917
@jouini917 6 месяцев назад
thank u bro
@Wongmc644
@Wongmc644 6 месяцев назад
Thanks for the playlist. One of the best tutorials. It's better than odin project. I'm also following the php tutorials.
@amaduscamara4378
@amaduscamara4378 7 месяцев назад
nice
@marvetoons1625
@marvetoons1625 11 месяцев назад
Thanks a lot for your Tutorials Dani I really enjoy do and would be glad to see more Please could you also do Tutorials on JavaScript Thanks a lot once again
@Dani_Krossing
@Dani_Krossing 11 месяцев назад
I have a JavaScript course linked on my channel page :)
@marvetoons1625
@marvetoons1625 11 месяцев назад
@@Dani_Krossing Thanks
@codecage9333
@codecage9333 Месяц назад
if you use the reset.css with the text from Elad, how do you keep from changing the "Boldness" that is normal with the tag? If I use normalize.css this issue doesn't present itself.
@fallux1236
@fallux1236 Год назад
Looks really cool to use! But when do you use the css reset sheets or this: * { Padding: 0; Margin: 0; } (This "*" element affect every HTML element on the page )
@Dani_Krossing
@Dani_Krossing Год назад
Yes it does 🙂 I usually use that too when doing "quick testing". However that only resets the margin and padding when it comes to all the browser default styling. So to make sure everything is reset properly, it's best to use a reset stylesheet. 🙂
@CsMuia
@CsMuia Год назад
Great to see you continue with HTML CSS tutorials. Happy New Year, look forward to learning more about the subject.
@interstaffing
@interstaffing Год назад
The 'reset.css' completely obliterates all the styling of the previous 'button' function. It now just appears as text. Was I wrongly choosing buttons over links previously ? Will I have to learn java to get styling back onto my buttons ? Will I have to make a visual box to set my link text inside of ? Have I missed a video where you talk about this ? It was just a visual thing that I chose to use the function, and I am a complete amateur, but I also love the idea of the reset.css allowing your html to start from scratch, as it were. cheers
@Dani_Krossing
@Dani_Krossing Год назад
It obliterates any styling that changes from browser to browser, which is a good thing. 🙂 In my “HTML form” lesson near the end of this playlist, I show how to fix the form styling that the reset file breaks 😉
@interstaffing
@interstaffing Год назад
@@Dani_Krossing Thank you for your reply Dani and thanks for doing these lessons; I'm obviously just a little bit behind. I best get back to class. ;) cheers
@romanpacanowski9896
@romanpacanowski9896 9 месяцев назад
After I added the reset stylesheet all of my CSS was reset; how do I fix this?
@Dani_Krossing
@Dani_Krossing 9 месяцев назад
You need to include the reset stylesheet before your own, otherwise yours get overwritten.
@MasterAless
@MasterAless 7 месяцев назад
I was just curious about what was the meaning of "reset.css"; I end up getting three ways of doing it, noice 😎
@Dani_Krossing
@Dani_Krossing 7 месяцев назад
It’s to reset the default styling added by the different browsers out there. 🙂 In order for your websites to look identical in every browser, when you style them.
@yeungvincent3977
@yeungvincent3977 Год назад
Hi is it brand new episode ?
@Dani_Krossing
@Dani_Krossing Год назад
Yes this one just released today. 🙂
@brianjett1446
@brianjett1446 Год назад
Can you please tell me what is the difference between using a reset stylesheet and this *{ Padding: 0; Margin: 0; Box-sizing: border-box; }
@Dani_Krossing
@Dani_Krossing Год назад
Using what you wrote is fine for quick testing, but it doesn’t reset all the default styling in the different browsers. 🙂 As you can see from the video, there are MUCH more styling that are set by the browsers. So if you want to make sure that a website looks the same to your users, no matter the browser they use, then you need a reset style sheet.
@brianjett1446
@brianjett1446 Год назад
@@Dani_Krossing Can you give me a link to a good rest stylesheet page?
@Dani_Krossing
@Dani_Krossing Год назад
I show it in this video 🙂 just watch the video and get it from the same place
@cruzinsweetsntreats
@cruzinsweetsntreats Год назад
@@brianjett1446 and he linked to 3 good sources in the description of this video.
Далее
КАХА и Джин 2
00:36
Просмотров 913 тыс.
TailwindCSS v4 First Look - Better at Everything?!
5:35
CSS Tips And Tricks I Wish I Knew Before
12:12
Просмотров 403 тыс.
Learn Flexbox CSS in 8 minutes
8:16
Просмотров 1,3 млн
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 882 тыс.
КАХА и Джин 2
00:36
Просмотров 913 тыс.