#css
Read more stories on Hashnode
Articles with this tag
The main reason people reset the font-size to 10px to make maths easier. ยท body { font-size:62.5%; } h1 { font-size: 2.4em; } /* =24px */ p { font-size:...
Adjust Application if the user enabled dark Mode on their Device, not from your web app ยท Many times, we have seen developers have created websites with...
Prepare your designs for an international audience. ยท When we work with multilingual sites, we have to adjust our elements as per writing mode,...
Accessible by all(no barriers that prevent interaction or access to the web) ยท Web Accessibility- Means creating a web application for all. Whenever we...
Content-Security-Policy HTTP response header helps you reduce risks like XSS, data injection attacks, and ClickJacking. Content-Security-Policy(HTTP...
currentColor acts like a variable for the current value of the color property on the element. //Html <div>Hello from currentColor</div> //css div { ...