CSS Box Shadow


Indholdsfortegnelse

    Vis indholdsfortegnelse


CSS box-shadow Ejendom

CSS-egenskaben box-shadow bruges til at anvende en eller flere skygger til et element.


Angiv en vandret og en lodret skygge

I sin enkleste brug angiver du kun en vandret og en lodret skygge. Standardfarven på skyggen er den aktuelle tekstfarve.

A <div> element with a box-shadow

Eksempel

Angiv en vandret og en lodret skygge:

   div
{
  box-shadow: 10px 10px;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 300px;
  height: 100px;
  padding: 15px;
  background-color: coral;
  box-shadow: 10px 10px;
}
</style>
</head>
<body>

<h1>The box-shadow Property</h1>

<div>This is a div element with a box-shadow</div>

</body>
</html>



Angiv en farve til skyggen

Parameteren color definerer farven på skyggen.

A <div> element with a lightblue box-shadow

Eksempel

Angiv en farve til skyggen:

  div
{
  box-shadow: 10px 10px lightblue;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 300px;
  height: 100px;
  padding: 15px;
  background-color: coral;
  box-shadow: 10px 10px lightblue;
}
</style>
</head>
<body>

<h1>The box-shadow Property</h1>

<div>A div element with a lightblue box-shadow</div>

</body>
</html>



Tilføj en sløringseffekt til skyggen

Parameteren blur definerer sløringsradius. Jo højere tal, jo mere sløret bliver skyggen.

A <div> element with a 5px blurred, lightblue box-shadow

Eksempel

Tilføj en sløringseffekt til skyggen:

   div
{
  box-shadow: 10px 10px 5px lightblue;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 300px;
  height: 100px;
  padding: 15px;
  background-color: coral;
  box-shadow: 10px 10px 5px lightblue;
}
</style>
</head>
<body>

<h1>The box-shadow Property</h1>

<div>A div element with a 5px blurred, lightblue box-shadow.</div>

</body>
</html>



Indstil spredningsradius for skyggen

Parameteren spread definerer spredningsradius. En positiv værdi øger skyggens størrelse, en negativ værdi formindsker skyggens størrelse.

A <div> element with a blurred, lightblue box-shadow, with a spread radius of 12px

Eksempel

Indstil spredningsradius for skyggen:

   div
{
  box-shadow: 10px 10px 5px 12px lightblue;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 300px;
  height: 100px;
  padding: 15px;
  background-color: coral;
  box-shadow: 10px 10px 5px 12px lightblue;
}
</style>
</head>
<body>

<h1>The box-shadow Property</h1>

<div>A div element with a blurred, lightblue box-shadow, with a spread radius of 12px.</div>

</body>
</html>




Indstil den indsatte parameter

Parameteren inset ændrer skyggen fra en ydre skygge (start) til en indre skygge.

A <div> element with a blurred, lightblue, inset box-shadow

Eksempel

Tilføj den indsatte parameter:

   div
{
  box-shadow: 10px 10px 5px lightblue inset;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 300px;
  height: 100px;
  padding: 15px;
  background-color: coral;
  box-shadow: 10px 10px 5px lightblue inset;
}
</style>
</head>
<body>

<h1>The box-shadow Property</h1>

<div>A div element with a blurred, lightblue, inset box-shadow.</div>

</body>
</html>



Tilføj flere skygger

Et element kan også have flere skygger:

Eksempel

   div
{
  box-shadow: 5px 5px blue, 10px 10px red, 15px 15px green;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
#example1 {
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 5px blue, 10px 10px red, 15px 15px green;
  margin: 20px;
}

#example2 {
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 5px 8px blue, 10px 10px 8px red, 15px 15px 8px green;
  margin: 20px;
}
</style>
</head>
<body>

<h1>Multiple Shadows</h1>

<div id="example1">
  <h2>Multiple shadows</h2>
  <p>box-shadow: 5px 5px blue, 10px 10px red, 15px 15px green:</p>
</div>
<br>

<div id="example2">
  <h2>Multiple shadows with blur effect</h2>
  <p>box-shadow: 5px 5px 8px blue, 10px 10px 8px red, 15px 15px 8px green:</p>
</div>

</body>
</html>



Kort

Du kan også bruge egenskaben box-shadow til at oprette papirlignende kort:

1

January 1, 2021

Norway

Hardanger, Norway

Eksempel

  div.card
{
  width: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 
0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: 
center;
}

Prøv det (tekstkort) →

<!DOCTYPE html>
<html>
<head>
<style>
div.card {
  width: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}

div.header {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  font-size: 40px;
}

div.container {
  padding: 10px;
}
</style>
</head>
<body>

<h1>Create Cards</h1>

<p>The box-shadow property can be used to create paper-like cards:</p>

<div class="card">
  <div class="header">
    <h1>1</h1>
  </div>

  <div class="container">
    <p>January 1, 2021</p>
  </div>
</div>

</body>
</html>


Prøv det (Billedkort) →

<!DOCTYPE html>
<html>
<head>
<style>
div.polaroid {
  width: 250px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}

div.container {
  padding: 10px;
}
</style>
</head>
<body>

<h1>Create Polaroid Images</h1>

<p>The box-shadow property can be used to create polaroid images:</p>

<div class="polaroid">
  <img src="rock600x400.jpg" alt="Norway" style="width:100%">
  <div class="container">
    <p>Hardanger, Norway</p>
  </div>
</div>

</body>
</html>




CSS Shadow Properties

Følgende tabel viser CSS-skyggeegenskaberne:

box-shadow

Tilføjer en eller flere skygger til et element

text-shadow

Tilføjer en eller flere skygger til en tekst