Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Vanilla CSS and why?

Tags:

css

What is Vanilla CSS and why is it called Vanilla CSS? What is the origin of this phrase.

like image 955
user3108698 Avatar asked Oct 18 '16 18:10

user3108698


People also ask

Is vanilla CSS better than bootstrap?

CSS has a much wider array of attributes than HTML, so you can give a far better look to your HTML page in comparison to HTML attributes. Also compared to other frameworks , vanilla CSS is much more bendable and customizable .

What does vanilla HTML mean?

Vanilla HTML is a framework built on the concept of not requiring extra markup or class attributes to attain a layout. Just write semantic HTML with some basic knowledge of Vanilla HTML and your layout is done. Seriously, now focus on the things that are actually important, like your design.

What is vanilla in web development?

In computer science, vanilla is the term used to refer when computer software and sometimes also other computing-related systems like computer hardware or algorithms are not customized from their original form, i.e., they are used without any customizations or updates applied to them.


1 Answers

Vanilla CSS is just CSS, vanilla making it absolutely clear that it's CSS and not a superset of it like LESS or SASS (which are also "CSS").

The phrase originally came into existence with the creation of Less in 2010-2011 (judging by the commit logs of https://github.com/less/less.js), to compare and contrast "Vanilla CSS" with "Less CSS".

i.e. It's clearer to say "Less CSS vs Vanilla CSS", compared to "Less CSS vs CSS"

like image 126
tcooc Avatar answered Nov 23 '22 23:11

tcooc