CSS Logo

CSS Cascading Style Sheets

Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.

License (various): Mozilla for instance uses MIT

Documentation: developer.mozilla.org

Standards and Specifications: w3.org

Current (stable) version: CSS3

Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media.
CSS is among the core languages of the open web and is standardized across Web browsers according to W3C specifications. Previously, development of various parts of CSS specification was done synchronously, which allowed versioning of the latest recommendations. You might have heard about CSS1, CSS2.1, CSS3. However, CSS4 has never become an official version.
From CSS3, the scope of the specification increased significantly and the progress on different CSS modules started to differ so much, that it became more effective to develop and release recommendations separately per module. Instead of versioning the CSS specification, W3C now periodically takes a snapshot of the latest stable state of the CSS specification.

Sample Code (CSS Syntax)
html, body{
	width: 96% auto;
	margin: 0px;
	padding: 0px;
}

body {
	background: #FFFFFF;
	color: #000000;
}

body {
	font-size: 16px;
	line-height: 1.5;
}

li {
	list-style-position: inside;
}

img.shaddow {
	border: 0px;
	box-shadow: 2px 2px 3px #BBBBBB;
}

div#app-container {
	width: 100% !important;
	padding-left: 10px;
	padding-top:   5px;
	padding-right:10px;
	box-sizing: border-box !important;
}