Ejemplos CSS

Ejemplo 1

Ejemplo de tabla

Código CSS
									
									*{
										margin: 0;
										padding: 0;
									}
									:not(p){
										margin: 10px;
									}
									p:first-child{
										background: red;
									}
									p:last-child{
										background: blue;
									}
									p:only-child{
										background: green;
									}