“Syntaxe CSS” Réponses codées

Syntaxe CSS

/*body,h2,p,input are html tags */
/*.hello and #test are html class and id attributes*/
body {
  background-color: blue;
}

h2 {
  color: grey;
  text-align: center;
}

p {
  font-family: Sans-serif ;
  font-size: 30px;
}
input{
  width:50%;
}
.hello{
 	color:red;
}
#test{
  	color:blue;
}
Debmalya Banerjee

* CSS Signification

.parent {
    background: red;
}
.child {
    overflow: hidden;
    height: 0;
    background: blue;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
    color: white;
}
.parent:hover > .child {
    height: 30px;
    display: block;
}
Repulsive Rhinoceros

Réponses similaires à “Syntaxe CSS”

Questions similaires à “Syntaxe CSS”

Plus de réponses similaires à “Syntaxe CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code