CSS rules Declaring¶ Lowercase syntax¶ Use lowercase for all CSS syntax. Before BODY { BACKGROUND-COLOR: RED; } After body { background-color: red; } Formatting¶ Indent style¶ Use two spaces for indentation. Before body { background-color: red; } After body { background-color: red; }