Grouped by Type

  • Display & Flow
  • Positioning
  • Dimensions
  • Margins, Padding, Borders, Outline
  • Typographic Styles
  • Backgrounds
  • Opacity, Cursors, Generated Content

Demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.some {
// Display & Flow
display: flex;
visibility: hidden;
float: left;
clear: both;

// Positioning
z-index: auto;
position: relative;
top: 0;
right: 0;

// Dimensions
width: 100%;
height: 100px;
overflow: hidden;

// Margins, Padding, Borders, Outline
margin: 0 auto;
padding: 10px;
border: 1px solid #000000;
outline: none;
list-style: square inside;
border-collapse: inherit;

// Typographic Styles
font: 1.2em "Fira Sans", sans-serif;
text-align: center;
white-space: nowrap;
color: #000000;

// Backgrounds
background: content-box radial-gradient(crimson, skyblue);
box-shadow: 10px 5px 5px red;
mask: url(masks.svg#star) 40px 20px;

// Opacity, Cursors, Generated Content
opacity: 0;
cursor: pointer;
content: '';
quotes: '"' '"' "'" "'";
}