Learn CSS - Selectors and Visual Rules Cheatsheet - Codecademy
Learn CSS - Selectors and Visual Rules Cheatsheet - Codecademy
●
type attribute to define the type of content
being linked
Purpose of CSS
CSS, or Cascading Style Sheets, is a language that is
used in combination with HTML that customizes how
HTML elements will appear. CSS can define styles and
change the layout and design of a sheet.
Selector Chaining
CSS selectors define the set of elements to which a CSS
rule set applies. For instance, to select all <p>
elements, the p selector can be used to create style
rules.
!important Rule
The CSS !important rule is used on declarations to
override any other declarations for a property and ignore #column-one {
selector specificity. !important rules will ensure width: 200px !important;
that a specific declaration always applies to the matched }
elements. However, generally it is good to avoid using
!important as bad practice. .post-title {
color: blue !important;
}
Chaining Selectors
CSS selectors can be chained so that rule sets apply only
to elements that match all criteria. For instance, to select /* Select h3 elements with the section-
<h3> elements that also have the section- heading class */
heading class, the selector h3.section- h3.section-heading {
heading can be used. color: blue;
}
Inline Styles
CSS styles can be directly added to HTML elements by
using the style attribute in the element’s opening <h2 style="text-align: center;">Centered
tag. Each style declaration is ended with a semicolon. text</h2>
Styles added in this manner are known as inline styles.
<p style="color: blue; font-size:
18px;">Blue, 18-point text</p>
Selector Specificity
Specificity is a ranking system that is used when there
are multiple conflicting property values that point to the h1#header {
same element. When determining which rule to apply, color: blue;
the selector with the highest specificity wins out. The } /* implemented */
most specific selector type is the ID selector, followed by
class selectors, followed by type selectors. In this
h1 {
example, only color: blue will be implemented as
color: red;
it has an ID selector whereas color: red has a } /* Not implemented */
type selector.
CSS ID selectors
The CSS ID selector matches elements based on the
contents of their id attribute. The values of id #job-title {
attribute should be unique in the entire DOM. For font-weight: bold;
selecting the element having job-title as the }
value of the id attribute, a # needs to be prepended.
CSS declarations
In CSS, a declaration is the key-value pair of a CSS
property and its value. CSS declarations are used to set /*
style properties and construct rules to apply to individual CSS declaration format:
or groups of elements. The property name and value are property-name: value;
separated by a colon, and the entire declaration must be */
terminated by a semi-colon.
/* CSS declarations */
text-align: center;
color: purple;
width: 100px;
Font Size
The font-size CSS property is used to set text
sizes. Font size values can be many different units or font-size: 30px;
types such as pixels.
Background Color
The background-color CSS property controls the
background color of elements. background-color: blue;
Opacity
The opacity CSS property can be used to control
the transparency of an element. The value of this opacity: 0.5;
property ranges from 0 (transparent) to 1 (opaque).
Font Weight
The font-weight CSS property can be used to set
the weight (boldness) of text. The provided value can be font-weight: bold;
a keyword such as bold or normal .
Text Align
The text-align CSS property can be used to set
the text alignment of inline contents. This property can text-align: right;
be set to these values: left , right , or center .
Background Image
The background-image CSS property sets the
background image of an element. An image URL should background-image: url("nyan-cat.gif");
be provided in the syntax url("moon.jpg") as the
value of the property.
Font Family
The font-family CSS property is used to specify
the typeface in a rule set. Fonts must be available to the h2 {
browser to display correctly, either on the computer or font-family: Verdana;
linked as a web font. If a font value is not available, }
browsers will display their default font. When using a
multi-word font name, it is best practice to wrap them in #page-title {
quotes.
font-family: "Courier New";
}
li {
color: khaki;
}