MOC Web Development: #Fleeting
MOC Web Development: #Fleeting
MOC Web Development: #Fleeting
CSS
Created: 2022-08-09
Tags: #fleeting
https://youtu.be/spK_S0HfzFw
Many experienced developers would much rather refer to MDN documentation or other tutorials. Nevertheless, it is
worth knowing that these specs exist and understanding the relationship between the CSS you are using, the browser
support (see below), and the specs.
You can use some CSS in some browsers and not in others.
CSS Selectors
body h1 + p .special {
color: yellow;
background-color: black;
padding: 5px;
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Types
@rules like
There kind of give logic to CSS that triggers something when a condition is true
How a browser takes CSS and HTML and turns that into a webpage.
Understanding the DOM helps you design, debug and maintain your CSS
This controls which css rule applies to what element - Cascade - Specificity - Inheritance
Debugging CSS
CSS Layout
Bootstrap