“HR CSS” Réponses codées

Comment changer la couleur de la balise HR en HTML

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

Style de ligne horizontale HTML

<!-- HTML -->

<!-- You can change the style of the horizontal line like this: --> 

<hr style="width:50%", size="3", color=black>  


<!-- Or like this: -->

<hr style="height:2px; width:50%; border-width:0; color:red; background-color:red">

Ana

CSS HR plus mince

hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #333; /* old IE */
    background-color: #333; /* Modern Browsers */
}
Elegant Emu

RH personnalisé dans CSS

<hr class="style-two">

/* Inset */

hr.style-two {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
Salo Hopeless

lin en pointillé dans CSS

hr {
  border:none;
  border-top:1px dashed #f00;
  color:#fff;
  background-color:#fff;
  height:1px;
  width:50%;
}
Brainy Booby

HR CSS

hr.hr-1 {
  margin: 100px;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}
Blue Baboon

Réponses similaires à “HR CSS”

Questions similaires à “HR CSS”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code