“Como alterar a cor da tag de RH em HTML” Respostas de código

Mude a cor de um RH

    hr {
        height: 1px;
        background-color: #ccc;
        border: none;
    }
Anthony Smith

Como alterar a cor da tag de RH em HTML

<style>       
    hr{
        height: 1px;
        background-color: #ccc;
        border: none;
    }
</style>
Different Dragonfly

Adicionar cor à etiqueta de RH

<style>
/* Red border */
hr.new1 {
  border-top: 1px solid red;
}

/* Dashed red border */
hr.new2 {
  border-top: 1px dashed red;
}

/* Dotted red border */
hr.new3 {
  border-top: 1px dotted red;
}

/* Thick red border */
hr.new4 {
  border: 1px solid red;
}

/* Large rounded green border */
hr.new5 {
  border: 10px solid green;
  border-radius: 5px;
}
</style>
 
<h2>Style HR</h2>
<p>Default:</p>
<hr>
<p>Different styles of HR:</p>
<hr class="new1">
<hr class="new2">
<hr class="new3">
<hr class="new4">
<hr class="new5">
Dayanaohhnana

Adicionar cor à etiqueta de RH

border: 1px solid red;
Dayanaohhnana

Respostas semelhantes a “Como alterar a cor da tag de RH em HTML”

Perguntas semelhantes a “Como alterar a cor da tag de RH em HTML”

Procure respostas de código populares por idioma

Procurar outros idiomas de código