CSS

Why I gave up on Bootstrap and created a minimalist CSS alternative

0
  • 06.18.2026
  • Posted in: CSS
  • 59 views

I don't use Bootstrap. I decided to abandon it because Bootstrap is inconvenient and limits me too much. When I write a simple CSS rule and insert a block inside Bootstrap, I see that it doesn't work. Bootstrap overwrites classic CSS rules, and things that work in regular CSS stop working for me. The second reason is that it complicates the HTML and CSS layout. Why define different class names in HTML for different types...

read more

Cookie Notice GDPR

0
  • 04.13.2024
  • Posted in: CSS
  • 70 views

Heading: Cookie Disclosure "Our website uses cookies and similar technologies to collect information about your usage patterns and preferences. This helps us provide you with a more personalized experience." Types of Cookies We Use: Essential Cookies: Necessary for the website to function properly (e.g., security, shopping cart). Performance & Analytics: Help us understand how visitors interact with the site (e.g.,...

read more

Emmet code examples in Sublime text

0
  • 01.03.2019
  • Posted in: CSS
  • 1726 views

Run in Sublime menu Package Control: Install Package command, type Emmet and install it. First type code in Emmet syntax, after that press Tab on your keyboard and view result. ul.nav <ul class="nav"></ul> li{some text}*2 <li>some text</li> <li>some text</li> ul.nav>li{some text}*2 <ul class="nav"> <li>some text</li> <li>some text</li> </ul> a{link...

read more