CSS-kantbredde


Indholdsfortegnelse

    Vis indholdsfortegnelse


CSS-kantbredde

Egenskaben class="w3-codespan">border-width angiver bredden af de fire grænser.

Bredden kan indstilles som en bestemt størrelse (i px, pt, cm, em osv.) eller ved at bruge en af de tre foruddefinerede værdier: tynd, medium eller tyk:

Eksempel

Demonstration af de forskellige kantbredder:

p.one
{
   
border-style: solid;
   
border-width: 5px;
}

p.two
{
   
border-style: solid;
  border-width: medium;
}
p.three
{
   
border-style: dotted;
  border-width: 2px;
}

p.four
{
   
border-style: dotted;
    border-width: thick;
}

Resultat :

5px border-width
medium border-width
2px border-width
thick border-width

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-width: 5px;
}

p.two {
  border-style: solid;
  border-width: medium;
}

p.three {
  border-style: dotted;
  border-width: 2px;
}

p.four {
  border-style: dotted;
  border-width: thick;
}

p.five {
  border-style: double;
  border-width: 15px;
}

p.six {
  border-style: double;
  border-width: thick;
}
</style>
</head>
<body>

<h2>The border-width Property</h2>
<p>This property specifies the width of the four borders:</p>

<p class="one">Some text.</p>
<p class="two">Some text.</p>
<p class="three">Some text.</p>
<p class="four">Some text.</p>
<p class="five">Some text.</p>
<p class="six">Some text.</p>

<p><b>Note:</b> The "border-width" property does not work if it is used alone. 
Always specify the "border-style" property to set the borders first.</p>

</body>
</html>



Specifikke sidebredder

class="w3-codespan">kantbredden egenskaben kan have fra én til fire værdier (for den øverste kant, højre kant, nederste kant og venstre kant):

Eksempel

 p.one {
  border-style: solid;
  border-width: 5px 20px; /* 
  5px top and bottom, 20px on the sides */
}
p.two {
  border-style: 
  solid;
  border-width: 20px 5px; /* 20px top and bottom, 5px on the 
  sides */
}
  
p.three {
  border-style: solid;
  border-width: 25px 10px 
  4px 35px; /* 25px top, 10px right, 4px bottom and 35px left */
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style>
p.one {
  border-style: solid;
  border-width: 5px 20px; /* 5px top and bottom, 20px on the sides */
}

p.two {
  border-style: solid;
  border-width: 20px 5px; /* 20px top and bottom, 5px on the sides */
}

p.three {
  border-style: solid;
  border-width: 25px 10px 4px 35px; /* 25px top, 10px right, 4px bottom and 35px left */
}
</style>
</head>
<body>

<h2>The border-width Property</h2>
<p>The border-width property can have from one to four values (for the top border, right border, bottom border, and the left border):</p>

<p class="one">Some text.</p>
<p class="two">Some text.</p>
<p class="three">Some text.</p>

</body>
</html>