web / js Flashcards
1
Q
list-style - what is it?
A
The list-style CSS shorthand property allows you to set all the list style properties at once.
- no points before name of list
list-style: none / square / inside;
2
Q
how to increase square in width on hover?
A
div:hover -> width more than it is
div ->
transition: background-color 0.5s ease;
transition: width 0.5s ease;
3
Q
What Is Webpack?
A
Webpack in the most simplistic terms is a tool used to consolidate multiple networked javascript files into one bundled javascript file in order to decrease web traffic
It usually is convention to name this bundled javascript file bundle.js