“Sintaks CSS” Kode Jawaban

Sintaks 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 berarti

.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

Jawaban yang mirip dengan “Sintaks CSS”

Pertanyaan yang mirip dengan “Sintaks CSS”

Lebih banyak jawaban terkait untuk “Sintaks CSS” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya