Hoe te maken: scheidingslijn

Leer hoe je verschillende scheidingslijnen met CSS kunt maken.

Gevlochten lijn


Puntenlijn


Rechte lijn


Afgeronde hoeken


Try it yourself

Hoe een scheidingslijn te maken

Stap 1 - Voeg HTML toe:

<hr class="dashed">
<hr class="dotted">
<hr class="solid">
<hr class="rounded">

Twee stappen - Voeg CSS toe:

/* 虚线边框 */
hr.dashed {
  border-top: 3px dashed #bbb;
{}
/* 点线边框 */
hr.dotted {
  border-top: 3px dotted #bbb;
{}
/* 实线边框 */
hr.solid {
  border-top: 3px solid #bbb;
{}
/* 圆角边框 */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
{}

Try it yourself