Skip to content

Instantly share code, notes, and snippets.

@marcosrivasr
Created March 5, 2011 17:29
Show Gist options
  • Save marcosrivasr/856525 to your computer and use it in GitHub Desktop.
Save marcosrivasr/856525 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
</style>
</head>
<body>
</body>
</html>
<style>
//Clase que puede aplicarse a varios elementos diferentes
.nombreClase{
}
//Clase que puede aplicarse a un elemento HTML definido
h1{
}
//Clase que sólo se aplica a un elemento único
#nombreElementoUnico{
}
</style>
<html>
<head>
<style>
//Clase que puede aplicarse a varios elementos diferentes
.nombreClase{
width: 450px;
height: 300px;
}
//Clase que puede aplicarse a un elemento HTML definido
h1{
color: #ff0000;
font-size: 14px;
font-family: Arial;
}
//Clase que sólo se aplica a un elemento único
#nombreElementoUnico{
background-color: #000000;
cursor: pointer;
text-align: right;
}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment