“CSS” Réponses codées

CSS

<script src="sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
Quaint Quagga

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

h2 {
 font-size:48px;
 color:dark blue;
 text-transform:uppercase;
 text-align:center;
 font-weight:normal;
}
Nwachukwu Christobel

CSS

.page-id-4 #main {
background-image: url(http://www.jeroenvanderwaal.com/wp-content/uploads/2015/03/achtergrond2.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding-top: 60px;
padding-bottom: 0px;
}
Anarchist (A)

CSS

/* good */
.USERNAME {
}

/* good */
.UserName {
}

/*bad */
.user-name {
}

/* good */
.userName {
}

/* good */
.usernameprofile {
}
Worrisome Wallaby

CSS

<p>Texto do parágrafo com um <em>elemento EM</em> nele contido.</p>
Paulo Lima

CSS

h2 {
 font-size:48px;
 color:dark blue;
 text-transform:uppercase;
 text-align:center;
 font-weight:normal;
}
Nwachukwu Christobel

CSS

/* Any Element With Class Title */
.title {
}

/* for the Element With id nave*/
#nav {
}

/* Any Element With dive */
div {
}

/*Any Element With h2*/
h2 {
}
Ashamed Albatross

CSS

h2 {
 font-size:48px;
 color:dark blue;
 text-transform:uppercase;
 text-align:center;
 font-weight:normal;
}
Nwachukwu Christobel

CSS

CSS is a cascading style sheets. It is used to style your website.
Bewildered Batfish

Réponses similaires à “CSS”

Questions similaires à “CSS”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code