Base Styles

CSSkel includes a set of base styles to ensure consistent rendering across browsers, built on top of normalize.css. These styles set global defaults for elements like html, body, and apply the box-sizing: border-box model universally.

Global Styles

The following global styles are applied:

Example

The following example shows how base styles affect a simple HTML structure:

<div>
    <p>This is a paragraph with default styling.</p>
</div>

This is a paragraph with default styling.

Normalize.css

CSSkel includes normalize.css to reset browser inconsistencies. This ensures elements like headings, lists, forms, and more render consistently across different browsers. For a full list of resets, refer to the normalize.css documentation.