Answers for "Style"

CSS
0

Style

<!-- External -->
<link rel="stylesheet" href="css/file.css" />

<!-- Internal -->
<style>
p {
  color: red;
}
</style>

<!-- Inline -->
<p style="color: blue;">This Is Our Paragraph</p>
Posted by: Guest on June-05-2021
0

Style

/* valid */
._user-name {
}

/* valid */
.-user-name {
}

/* valid */
.-user-name {
}

/* Not Valid */
.1user-name {
}

/* Not Valid */
.@user-name {
}

/* Not Valid */
.user@name {
}

/* Valid */
._user10name {
}

/* Valid */
.u {
}
Posted by: Guest on June-05-2021
0

Style

<!-- Write Path -->
<link rel="stylesheet" href="assets/css/master.css" />
Posted by: Guest on June-05-2021
0

Style

/* Bad */
.USERNAME {
}

/* Bad */
.UserName {
}

/* Good */
.user-name {
}

/* Bad */
.userName {
}

/* Good */
.usernameprofile {
}
Posted by: Guest on June-05-2021
0

Style

<!-- Write Path -->
<link rel="stylesheet" href="source/css/main.css" />
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language