Skip to content

Same Code in Good and Bad Examples in README.md #103

@aa25g15

Description

@aa25g15

CSS Section -> Selectors are placed on separate lines:

/* Good */
h1,
h2,
h3 {
  text-transform: uppercase;
}

/* Bad */
h1,
h2,
h3 {
  text-transform: uppercase;
}

Notice the Good and Bad examples are the same.

CSS Section -> Properties have their own unique line:

/* Good */
.gallery {
  background: #000;
  color: #fff;
}

/* Bad */
.gallery {
  background: #000;
  color: #fff;
}

Notice the Good and Bad examples are the same.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions